我需要匹配这个引导类:
'.col-lg-1',
'.col-lg-2',
'.col-lg-3',
'.col-lg-4',
'.col-lg-5',
'.col-lg-6',
'.col-lg-7',
'.col-lg-8',
'.col-lg-9',
'.col-lg-10',
'.col-lg-11',
'.col-lg-12',
'.col-md-1',
'.col-md-2',
'.col-md-3'
这在gulpfile中是有效的。
当我尝试对regex执行同样的操作时:
'/.col-([a-zA-Z0-9]+)-([a-zA-Z0-9]+)/'
类不会被忽略。我已经检查了下面的表达式:http://regexr.com/3f7ka
我哪里做错了?谢谢。
1条答案
按热度按时间carvr3hs1#
删除周围的撇号并使用
g
执行全局操作,它的工作原理是:https://stackoverflow.com/a/36358570/2986401