我是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 ?
答案 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
中