Javascript查找字符后的数字(冒号)

这个问题在这里已经有了答案:

  • 如何访问JavaScript正则表达式中的匹配组? 14个答案

  • Alex已经给出了答案: str.match(/number:s+(d+)$/i)[1] ,表示索引为1的结果。该数组中的索引是由()在你的正则表达式中。 第一个索引(0)是你得到的答案。

    链接地址: http://www.djcxy.com/p/76793.html

    上一篇: Javascript to find number after character (colon)

    下一篇: Javascript global match with capturing groups