gpt4 book ai didi

javascript - JavaScript 中的正则表达式

转载 作者:行者123 更新时间:2023-11-30 07:11:45 25 4
gpt4 key购买 nike

我需要获取所有以#开头的数字。

“这是句子 1。项目编号 #4567”

“这是第 2 句。项目编号 #8937 和 #6723”

我正在使用 JavaScript。

如何使用正则表达式获取字符串中的所有数字。

最佳答案

var matches = "Item number #8937 and #6723".match(/#\d+/g);
print(matches[0]); // #8937
print(matches[1]); // #6723

关于javascript - JavaScript 中的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2277709/

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