gpt4 book ai didi

regex - 否定前瞻

转载 作者:数据小太阳 更新时间:2023-10-29 03:20:22 25 4
gpt4 key购买 nike

我正在尝试编写一个正则表达式,它只匹配一个词(本例中的 themagicword),来自 perl/python 世界我会用一个否定的前瞻来做到这一点:^(?!themagicword)。 *
我如何在 golang 中实现这一点,因为这在 golang 中似乎不起作用。

最佳答案

“匹配除一个词以外的任何内容”等同于“匹配(非词)”,后者等同于“不(匹配词)”。因此,只需匹配您要排除的单词,然后返回相反的单词:

hasmagic, _ := regexp.MatchString("themagicword", "haystack")
matched := !hasmagic

关于regex - 否定前瞻,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54947896/

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