I have a regular expression
\(\'?.*(\/public\/images.*[^\'"])\'?\)
It matches ulrs in my CSS file. Here is examples:
- background: url(/public/images/new_layout/bg-nav-active.png) no-repeat 100% 100%;
- background: url(/public/images/new_layout/bg-nav-active.png?v=23423h423lj4h23l4jk23hl4jkh4h2kljh) no-repeat 0 -
But, how to exclude parameter v from URL ?v=23423h423lj4h23l4jk23hl4jkh4h2kljh
Thank You for help.