1
大家好:我需要使用RexEx匹配相似的單詞。例如,如果我有一個包含「自主」這樣的詞的模式,它應該匹配單詞「自主」而不匹配「自主」。
示例代碼:
使用RegEx匹配相似單詞
void modify(string word)
{
string input = "This island is a colony; however,it is autonomous and " +
"receives no orders from the mother country, autonomy, N.";
string pattern = @",\s" + word + @"\s[v|n|adj]\.";//word = "autonomous";
Regex reg = new Regex(pattern);
string output = reg.Replace(input, ".");
}
對不起。我向女士道歉。 – FadelMS 2012-08-12 05:13:46
你確定你的代碼與自治系統匹配嗎? – 2012-08-12 05:22:52
@habib:那是我不想要的。 – FadelMS 2012-08-12 05:28:46