qddoit 发表于 2009-8-1 00:28:17

如何用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

afan 发表于 2009-8-1 00:32:56

用 StringRegExp 检查字串是否符合给定的正则表达式.

qddoit 发表于 2009-8-1 00:39:55

刚看了下帮助,看不太懂,能否给个简单的例子提示下?

afan 发表于 2009-8-1 01:11:36


$current="myisamchk -c -r ../data/vhaoshuduo/dede_arccache.MYI"
If StringRegExp($current, '.*data.*|.*dede.*', 0)then
MsgBox(4096,"","find it")
Else
;
endif

qddoit 发表于 2009-8-1 01:15:33

:face (29):

搞定了,谢谢~

menfan1 发表于 2009-8-1 10:32:45

楼上正解。。

浪迹红客 发表于 2011-5-19 19:17:14

学习了。。。。
页: [1]
查看完整版本: 如何用StringInStr命令判断字符串包含多个字串