zhangchaoy 发表于 2011-12-12 13:36:05

如何使用正则表达式判断大小写字母

SystemUtil.Run "C:\Program Files\HP\QuickTest Professional\samples\flight\app\flight4a.exe"
WithWindow("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:03

正则不太适合这个时候用,大小写的处理更适合使用UCase或者LCase,例如
If UCase(PW) <> "MERCURY" Then

zhangchaoy 发表于 2011-12-12 17:13:52

:handshake非常感谢指教。
页: [1]
查看完整版本: 如何使用正则表达式判断大小写字母