我試圖匹配整個字再一個字符串。當我想將匹配限制爲整個單詞時,我遇到了一個問題。當我試圖找到它時,我發現我的理解有更大的問題。Regex.IsMatch澄清
下面的程序沒有找到匹配,我就期待:
class Program
{
static void Main(string[] args)
{
if (Regex.IsMatch("t1", "\bt1\b"))
{
return; // I was expecting this to be hit but it is not
}
}
}
任何人都可以指出我做了什麼錯?