Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用正则表达式对它进行字符串替换
url('sprites-s1da6ddca7c.png')
至url({{'sprites-s1da6ddca7c.png' | asset_url}})
url({{'sprites-s1da6ddca7c.png' | asset_url}})
而且精灵文件名是自动生成的,所以基本上需要找url('sprites-*wildcard.png')
url('sprites-
.png')
这是我要使用的插件:https ://npmjs.org/package/grunt-string-replace一旦我弄清楚了正则表达式,它看起来很容易实现
如果您想要一个简单的正则表达式来匹配此类模式并捕获名称,您可以使用如下正则表达式:
\burl\(('sprites-\w+\.png')\)