gpt4 book ai didi

c# - 正则表达式在特定单词后立即查找单词

转载 作者:太空狗 更新时间:2023-10-29 22:27:09 24 4
gpt4 key购买 nike

我想使用正则表达式在字符串中的特定单词之后立即查找单词。例如,如果单词是“我的”,

“这是我的祈祷”-祈祷

“这是我的书()”-书

是否可以使用正则表达式?

最佳答案

正则表达式是

(?<=\bmy\s+)\p{L}+

\p{L}+是一个字母序列。 \p{L}Unicode code point with the property "Letter",所以它匹配任何语言的字母。

(?<=\bmy\s+)是一个回顾断言,确保单词“my”在

关于c# - 正则表达式在特定单词后立即查找单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14395721/

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