标签: javascript regex
我有一个文件,其中包含以下形式的字符串:
" vestuvems.lt在全球排名第5,254,602位
其中名称vestuvems.lt和5,254,602的值将更改。如何编写正则表达式只从文档中获取上述字符串,然后从该字符串中提取数字。
我尝试了以下不起作用:
new RegExp(" is ranked number \d+ in the world according to the Alexa Traffic Rank");