the string to be matched looks something like this:
url("http://localhost:8888/img/4ecdd7cd00b149c1ba169c2671dcdc82.png")
the result I want:
http://localhost:8888/img/4ecdd7cd00b149c1ba169c2671dcdc82.png
what I"m trying to write is regular:
let url= "url("http://localhost:8888/img/4ecdd7cd00b149c1ba169c2671dcdc82.png")"
let reg = /[^url("")]+[^\s]*/gi;
reg.exec(url)
print result: