标签: 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。谁可以给我解释一下这个?谢谢
exec()