51Testing软件测试论坛

标题: 如何使用正则表达式判断大小写字母 [打印本页]

作者: zhangchaoy    时间: 2011-12-12 13:36
标题: 如何使用正则表达式判断大小写字母
SystemUtil.Run "C:\Program Files\HP\QuickTest Professional\samples\flight\app\flight4a.exe"
With  Window("Text:=Login")
.WinEdit("Attached Text:=Agent Name:").Set DataTable ("UserName", "Action1")
.WinEdit("Attached Text:=Password:").SetSecure DataTable ("Password", "Action1")
PW = DataTable.Value("Password", "Action1")
'Msgbox PW
If PW <>"MERCURY | mercury" Then
        Msgbox "密码错误"
Else
        Msgbox "密码正确"
End If
End With
当用户输入密码为Mercury时,无论大小写都是正确的。
If PW <>"MERCURY | mercury" Then, 请问在这一句中如何使用正则表达式。
或者更复杂一点,不如MerCUrY什么的都是正确的,该如是使用正则。谢谢
作者: hsjzfling    时间: 2011-12-12 16:09
正则不太适合这个时候用,大小写的处理更适合使用UCase或者LCase,例如
If UCase(PW) <> "MERCURY" Then
作者: zhangchaoy    时间: 2011-12-12 17:13
非常感谢指教。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2