JavaScript RegEx如何仅使用非数字字符匹配数字seperetad?

时间:2017-08-20 09:23:17

标签: javascript regex

我是JavaScript的初学者。我在RegEx中遇到了一些问题。

var string="Find the mean, median, mode of the following data. Concatenate the three averages and the data values at positions 176 and 345."
var pos=string.match().

如何使用正则表达式将此文本中“ 176 345 ”位置的值保存到 pos

1 个答案:

答案 0 :(得分:0)

var string="Find the mean, median, mode of the following data. Concatenate the three averages and the data values at positions 176 and 345."
var pos=string.match(/\b\d+\b/g);
console.log(pos);

这会将您的所有数字存储在数组 pos