RegExp for search-replaceing css-urls from url(asdf.bc) to url('images/asdf.bc')


/ Published in: Regular Expression
Save to your folder(s)



Copy this code and paste it in your HTML
  1. find: url\(([a-zA-Z\.]+)\)
  2. replace: url('images/$1')

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.