I have a string:
let str = ' some text url:"http:/myURL01", some text url:"http:/myURL02", ..., url:"http:/myURL03", some text';
Now, i want to get all URL (sub string between url:" and ", ) and add to an array
Expect result: arrURL ["myURL01", "myURL02", "myURL03"]
Thank you!