gpt4 book ai didi

javascript - 正则表达式 JavaScript : Symbol extraction after digit

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

我的数据:

abc3# de2! fghi1?

我需要的是一个 RegEx,它将提取紧跟在数字(1、2 或 3)之后的符号,以便匹配为:#!, ?

我研究了非捕获组等,但无法使其正常工作:(?:1|2|3)[\S]+

最佳答案

正则表达式或多或少是正确的,我会使用

\d([^\w\s]+)

然后你需要使用RegExp#exec:

var re = /\d([^\w\s]+)/g;                  // Declare the regex
var str = 'abc3# de2! fghi1?';
var res = [];
while ((m = re.exec(str)) !== null) { // find a match
res.push(m[1]); // Get the captured value only
}
document.body.innerHTML = "<pre>" + JSON.stringify(res, 0, 4) + "</pre>";

正则表达式匹配

  • \d - 一个数字
  • ([^\w\s]+) - 匹配 1+ 个非单词和非空白符号的捕获组。

如果你想确保只匹配“单词”或字符串的末尾,你可以使用 /\d([^\w\s]+)(?=\s|$)/g 正则表达式。

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

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