gpt4 book ai didi

Javascript 正则表达式 "ends with"与 "does not end with"

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

以下 javascript 将 bool 值呈现到每个语句的右侧:

var reg = new RegExp(/^[\w\/].*result\b/);

console.log(reg.test('pathtofiletest')); -> false
console.log(reg.test('path/to/file/test')); -> false
console.log(reg.test('/path/to/file//test/result')); -> true
console.log(reg.test('/path/to/file/not_a_test$#%$5724')); -> false

太棒了!这正是我想要的。现在我想反转结束语句。我希望其他不以结果结尾 的字符串为真,而以结果结尾 的语句为假。但是,我不能就此否定这种说法。我试过:

^[\w\/].*^result\b
^[\w\/].*(?!result\b)
^[\w\/].*^(?!result\b)
^[\w\/].^(result\b)

还有很多。我错过了什么?

好奇者申请

我问的原因是因为我正在使用 express 和 nodejs。我叫

router.get('/pathstring', function (req, res, next) {
//code
}

路径字符串是一个正则表达式。这不仅仅是对或错。

最佳答案

像这样的东西应该可以工作

^(?!.*result$).*$

https://regex101.com/r/jO9fN6/1

关于Javascript 正则表达式 "ends with"与 "does not end with",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30762669/

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