i have a css file with a bunch of background image urls:
.alert-01 { background: url(\'img/alert-01.jpg\') center no-repeat; } .alert-02 { background: url(\'
Try:
/url\(.*?g'\)/ig
Your mistake was including ^ and $ in the regexp, which anchors it to the beginning and end of the input string. And you forgot to allow for the quote.
^
$