如何用StringInStr命令判断字符串包含多个字串
本帖最后由 qddoit 于 2009-8-1 01:15 编辑如
$current="myisamchk -c -r ../data/vhaoshuduo/dede_arccache.MYI"
If StringInStr($current,"data") Then
MsgBox(4096,"","find it")
Else
endif
如何检测current里是否包含data 或dede 用 StringRegExp 检查字串是否符合给定的正则表达式. 刚看了下帮助,看不太懂,能否给个简单的例子提示下?
$current="myisamchk -c -r ../data/vhaoshuduo/dede_arccache.MYI"
If StringRegExp($current, '.*data.*|.*dede.*', 0)then
MsgBox(4096,"","find it")
Else
;
endif
:face (29):
搞定了,谢谢~ 楼上正解。。 学习了。。。。
页:
[1]