下面是我将*
用正则表达式替换的当前代码,以便我进行搜索,
Regex.Match(value, @"([a-zA-Z0-9\s_.,!""'/$\-]+)");
我想确保正则表达式只匹配一个单词,而不是整个句子。
Keyword: recomm*
Text: recommend on a solution
Result: matched
Keyword: recommend*
Text: recommend on a solution
Result: matched
Keyword: re*om*end
Text: recommend on a solution
Result: matched
Keyword: recommend*on
Text: recommend on a solution
Result: not matched
但是我的正则表达式适用于第 3 个示例,但不适用于第 4 个示例。有谁知道如何解决这个问题?