gpt4 book ai didi

javascript - JS 正则表达式字符串分割

转载 作者:行者123 更新时间:2023-12-03 05:59:16 26 4
gpt4 key购买 nike

我正在尝试将表达式拆分为某些特定字符。我知道我们可以将 String.split() 与正则表达式一起使用,所以这是我的第一个猜测:

function expressionSplit([input]) {
let regex = /([ (),;.]+)/g;
let arr = input.split(regex);

arr.forEach(item => console.log('item: ' + item));
}

expressionSplit(['let sum = 1 + 2;if(sum > 2){\tconsole.log(sum);}']);

现在这与我的预期相去甚远,所以我做了更多阅读,发现人们与我不同,使用 split() 与正则表达式没有问题。困惑,我尝试了这个:

function expressionSplit([input]) {
let regex = /([ (),;.]+)/g;
let arr = input.replace(regex, '|').split('|');

arr.forEach(item => console.log('item: ' + item));
}

expressionSplit(['let sum = 1 + 2;if(sum > 2){\tconsole.log(sum);}']);

与我的预期相反 - 它大部分都有效。为什么会出现这种情况?我希望这是某种 JS 典型的奇怪之处,因为它对我来说根本没有意义,另外,正如我所说 - 其他人似乎使用 split() 与正则表达式没有问题。另外我怎样才能用'\t'(制表符)分割。将 '\t' 添加到正则表达式似乎没有任何作用,而 '\\t' 只匹配 't'。谢谢。

最佳答案

这里没有发生“JS 典型的奇怪现象”——这都是有记录的行为。如果你想提示 JS 的怪异,那你就有点晚了……几年前,随着 JavaScript 的“成长”,这种风格已经过时了。

来自 String#split 的文档:

If separator is a regular expression that contains capturing parentheses, then each time separator is matched, the results (including any undefined results) of the capturing parentheses are spliced into the output array. However, not all browsers support this capability.

由于您使用的是分组运算符,因此您将在结果中获取拆分标记以及被拆分的内容。如果您删除拆分 token ,它的行为将如您最初预期的那样:

// old:     /([ (),;.]+)/g;
let regex = /[ (),;.]+/g;

关于javascript - JS 正则表达式字符串分割,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39812501/

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