换个思路,先全部转换,然后再判断,就会万无一失了
Dim Str1 As String = "I like foxtable"
Str1 = Str1.ToLower()
If Str1.Contains("like") Then Output.Show("Me too")End If