当前,我的代码无法正确检测字符串是否具有特定字符。
进行简单说明。请参考:
Dim strSample as String = "Y1-K99"
如果字符串将检测strSample
是否带有字母K,我就尝试了这段代码。
If (strSample Like "##K*" Or strSample Like "###K*") Then
'Do Something
End if
但是它不会触发或进入If Else condition
的内部函数,即使它具有K。
答案 0 :(得分:1)
如果您在“ strSample的字母为K”之后 ,则需要将IF条件更改为
If (strSample Like "*K*") Then
'Do Something
End if
对此有读 Like Operator