【已解决】如何检测玩家输入框包含特殊符号 看代码
本帖最后由 261869247 于 2010-8-20 14:09 编辑#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("检测玩家输入的内容是否包含多个特殊符号", 395, 242, 343, 201)
$Input1 = GUICtrlCreateInput("", 48, 48, 281, 21)
$Button1 = GUICtrlCreateButton("检测", 88, 120, 193, 33)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
jiance()
EndSwitch
WEnd
Func jiance()
$d = GUICtrlRead($Input1)
If StringInStr($d, "*") >= 1 Then ;这里怎么检测多个关键字符
MsgBox(0, "", '对不起玩家英文ID和中文ID不能包含\/:*?"<>|')
Else
EndIf
EndFunc ;==>jiance想禁止这些系统命名文件不能使用的这些符合 代码只能检测一个符号 怎么检测多个哦
If StringRegExp($d, '[\\\/\:\*\?\"\<\>\|]')Then 本帖最后由 Duvet 于 2010-8-20 14:02 编辑
我弄錯了... If StringRegExp($d, '[\\\/\:\*\?\"\\|]')Then
afan 发表于 2010-8-20 13:37 http://www.autoitx.com/images/common/back.gif
AFAN大哥的正解 本帖最后由 261869247 于 2010-8-20 14:05 编辑
谢谢大家! 嘿嘿 StringInStr($d,"\/:*?"|")
Duvet 发表于 2010-8-20 13:44 http://www.autoitx.com/images/common/back.gif
这位兄台的可能误解我意思了是包含其中一个而不是整组符号 不过也谢谢你
你的代码有问题的包含符号中包括" 那么 StringInStr($d,"\/:*?"|") 应该改成
StringInStr($d,'\/:*?"|') 用小分号 我弄錯了...
Duvet 发表于 2010-8-20 13:44 http://www.autoitx.com/images/common/back.gif
哈哈 路过,路过,路过,路过,路过,路过,
页:
[1]