我想来自
markets-map.es6.js
filename.abc.es6.js
filename.ab.def.es6.js
abc.js
defghi.es6.js
location-map.js
demographics-map.es7.js
demographics-map.tar.bz
demographics-map.tar.zip
demographics-map.tar.ball
以下内容:markets-map
,filename.abc
,filename.ab.def
,filename.abc
,abc
,defghi
,location-map
,{{ 1}},demographics-map
与正则表达式。你能帮忙吗?
答案 0 :(得分:2)
你的问题是具体的,所以你有一种方法可以解决它,它是逐个解决的,这里是你可以使用的正则表达式:
(.*?)(((\.es\d+)?\.js)|(\.tar\.(bz|zip|ball)))
所以你只能拿这里的第一组是正则表达式演示:
Input Output
markets-map.es6.js -> markets-map
filename.abc.es6.js -> filename.abc
filename.ab.def.es6.js -> filename.ab.def
abc.js -> abc
defghi.es6.js -> defghi
location-map.js -> location-map
demographics-map.es7.js -> demographics-map
demographics-map.tar.bz -> demographics-map
demographics-map.tar.zip -> demographics-map
demographics-map.tar.ball -> demographics-map