gpt4 book ai didi

javascript - 通过正则表达式提取子字符串

转载 作者:行者123 更新时间:2023-11-30 11:52:02 26 4
gpt4 key购买 nike

我正在尝试使用正则表达式将资源 ID 提取到变量中。

到目前为止,我设法匹配了字符串,但我对如何将数字提取到一个单独的值感到困惑。

"/posts/23/edit".match(/\/posts\/(\d*)\/edit/g)
// => ["/posts/23/edit"]

最佳答案

/\/posts\/(\d*)\/edit/g.exec("/posts/23/edit")
// => ["/posts/23/edit", "23"]

关于javascript - 通过正则表达式提取子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39194526/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com