gpt4 book ai didi

javascript - 正则表达式匹配不带字符的单词

转载 作者:行者123 更新时间:2023-11-28 18:35:16 25 4
gpt4 key购买 nike

这就是问题:

我们有包含 2 个单词的字符串,例如:

["bed time", "red carpet", "god father", "good game"]

正则表达式应该匹配 god Fathergood game 因为它们每个都有一个不包含字母 e 的单词(god and好),并且它不应该匹配 bed time 和“红地毯”,因为字符串中的两个单词都有字母 e

我正在考虑 /\b[^e]*\b/g ,但它匹配所有这些字符串。

最佳答案

这适用于您的情况:

/.*\b[^\se]+\b.*/gi

<强> Regex101

关于javascript - 正则表达式匹配不带字符的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37221600/

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