正则表达式过滤字符串中间和结尾的字符

时间:2016-09-10 23:36:04

标签: regex

我试图只选择字符串中间带有'300'的字符串,并使用正则表达式选择末尾的'.txt'。什么是正确的正则表达式使用?

1 个答案:

答案 0 :(得分:0)

试试这个:

var regexp = /^.*300.*\.txt$/
console.log("Abc 300 adef.txt".match(regexp))