отрывок css файла:
#content .block1 .list li {background: url(../images/block1-list-separator.png) bottom no-repeat;}
#content .block1 .list li:last-child{background:none;}
#content .block1 .border-bottom{border-bottom:1px #44152f solid;}
#content .block2{background:url(../images/block2-top.png) top no-repeat, url(../images/block2-bot.png) bottom no-repeat, #030a15; padding:0 26px 20px 26px;}
#content .block2 .border-bottom{border-bottom:1px #0d262b solid;}
регулярка:
#(?:url\()(.*)(?:\))#i
в варианте где
{background: url(../images/block1-list-separator.png) bottom no-repeat;}
находит:
../images/block1-list-separator.png
то что нужно! Но в варианте где указаны бэкграунды через запятую:
{background:url(../images/block2-top.png) top no-repeat, url(../images/block2-bot.png) bottom no-repeat, #030a15; padding:0 26px 20px 26px;}
находит:
../images/block2-top.png) top no-repeat, url(../images/block2-bot.png
Подскажите какое условие добавить или еще как-то?
Чтобы находил:
../images/block1-list-separator.png
../images/block2-top.png
../images/block2-bot.png