gpt4 book ai didi

javascript - Typescript nodejs - 正则表达式模式在变量内不起作用

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

我正在尝试在字符串数组上测试一些正则表达式模式。当我直接将模式与测试功能一起使用时,它可以正常工作。但是当我将模式用作常量变量时​​,它就不再起作用了。

有人可以解释我的代码有什么问题吗?或者我该如何纠正这个问题?

谢谢:)

const strArray = ['(', 'ATT1', 'VARCHAR2', ')'];

const testingWord = (pString: string) => /^[^;() ]+$/g.test(pString);
strArray.map((word) => {
console.log(word, testingWord(word));
});
// RESULT
// ( false
// ATT1 true
// VARCHAR2 true
// ) false

const PATTERN_WORD = /^[^;() ]+$/g;
const test = (pString: string) => PATTERN_WORD.test(pString);
strArray.map((word) => {
console.log(word, testingWord(word));
});

// RESULT
// ( false
// ATT1 true
// VARCHAR2 false <-- this should be true
// ) false

最佳答案

您刚刚发现了为什么在正则表达式中使用 g 标志会出现问题。

RegExp 对象有一个属性 - lastIndex .当对象用于匹配(或测试)字符串时设置,如果yg标志被使用。

此属性用于确定从何处开始匹配,因此如果它不是 0,您的正则表达式可能会遗漏一些属性。

因为您只将此正则表达式与 .test 一起使用,所以去掉 g 标志。它不会改变正则表达式的行为。

const PATTERN_WORD = /^[^;() ]+$/; // <-- here
const test = (pString: string) => PATTERN_WORD.test(pString);
strArray.map((word) => {
console.log(word, testingWord(word));
});

关于javascript - Typescript nodejs - 正则表达式模式在变量内不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56614889/

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