以下代碼工作。檢查文本是否包含多個@
Dim aaa As String = "[email protected]"
If aaa.Contains("@") Then
MsgBox("Error1")
End If
以下代碼不起作用。
Dim bbb As String = "[email protected]@cc"
If bbb.Contains("*@*@*") Then
MsgBox("Error2")
End If
那麼,下面一行有什麼問題?
If bbb.Contains("*@*@*") Then