Contains
判断字符串是否包含一个给定的子字符串。
语法:
Contains(Value)
Value:给定的子字符串。
例如:
Dim
Str1
As
String
=
"I like foxtable"
If
Str1 > ""
AndAlso
Str1
.
Contains
(
"like"
) Then
Output.Show(
"Me
too"
)
End If
本页地址:
http://www.foxtable.com/webhelp/topics/1422.htm