像操作员无法检测到字符串中的字符

时间:2019-01-14 05:13:39

标签: string vb.net

当前,我的代码无法正确检测字符串是否具有特定字符。

进行简单说明。请参考:

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。

1 个答案:

答案 0 :(得分:1)

如果您在“ strSample的字母为K”之后 ,则需要将IF条件更改为

If (strSample  Like "*K*") Then
'Do Something
End if

对此有读 Like Operator