I have a string containing external url links like
.listView a.toggle::after { content: " "; background: url("/test/images/up_small.svg") center center no-repeat; }
I want to grab the text between the url tags like
/test/images/up_small.svg
I tried like
a.split(new RegExp("[^(url)\(\".*\"]"))
but it did not work.
How can I get the external url and if needed replace the same with something else? in JavaScript