regexPattern.test(str)返回true,但是regexPattern.exec(str)返回null

时间:2019-08-06 10:40:02

标签: javascript regex

const regex = /\/open-house\/(\+?\d+)/g
const path = '/open-house/1005192'
regex.test(path) // returns true
regex.exec(path) // returns null

我正在尝试使用正则表达式从路径中解析ID(1005192)。但是,每当我运行exec()时,它都会返回null。谁可以给我解释一下这个?谢谢

0 个答案:

没有答案