gpt4 book ai didi

javascript - 限制字符串大小正则表达式

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

我正在尝试匹配字符串长度大于 1 的所有表达式。这是我的正则表达式。

string.match(/\B\w+(?=\w)/gi);

我试过这个:

string.match(/^\B\w+(?=\w){2,}$/gi);

但它不起作用......

最佳答案

如果您想匹配长于一个 字符的每个单词 - 使用量词 - \w{2,}

var str = "a b cd efg hijk",
res = str.match(/\w{2,}/g);

console.log(res);

另一种可能的解决方案是拆分 数组并过滤掉长于一个 字符的每个单词。

var str = "a b cd efg hijk",
res = str.split(' ').filter(v => v.length > 1);

console.log(res);

关于javascript - 限制字符串大小正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43399713/

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