RegExpValidator MXML
您好
我的正则表达式有问题。我在 MXML 中有一个 RegExpValidator,我希望当源包含 a 或 b 时该 RegExpValidator 无效
我的 RegExpValidator 是
<mx:RegExpValidator source="{value}"
property="text"
expression='.*[^ab].*'
valid="isValid(event)"
invalid="isInvalid(event)"/>
我的表达式是 expression='.*[^ab].*'
当它只是 a、b 或 a 和 b(一次或多次)时,表达式无效:OK
当它是其他一切时,表达式是有效的:好的
但当 a 或/和 b 与其他字符一起使用时,它也是有效的。我必须更改什么才能使其无效?
Hi
I have a problem with a regular expression. I have an RegExpValidator in MXML and I want that is invalid when the source contain a or b
My RegExpValidator is
<mx:RegExpValidator source="{value}"
property="text"
expression='.*[^ab].*'
valid="isValid(event)"
invalid="isInvalid(event)"/>
My expression is expression='.*[^ab].*'
When it's just a, b or a and b (one or many times) the expression is invalid : OK
When it's everything else the expression is valid : OK
But when it a or/and b with other caractere, it's also valid. What do I have to change to have this invalid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
想象一下字符串
abc
。如果您将正则表达式.*[^ab].*
应用于它,第一个.*
将匹配ab
,[ ^ab]
匹配c
,最后的.*
匹配空字符串。另外,如果您不将正则表达式锚定到字符串的开头和结尾,则如果只有子字符串匹配,正则表达式可能会声明成功(取决于验证器的实现)。
您想要这样:
它匹配除
a
或b
之外的任意数量的字符。^
将正则表达式锚定到字符串的开头,$
锚定到字符串的结尾。Imagine the string
abc
. If you apply the regex.*[^ab].*
to it, the first.*
will matchab
, the[^ab]
matchesc
, and the final.*
matches the empty string.Also, if you don't anchor your regex to the start and end of the string, it might happen (depending on the implementation of your validator) that the regex declares success if only a substring matches.
You want this:
This matches any number of characters except
a
orb
.^
anchors the regex to the start,$
to the end of the string.有很多在线工具可以帮助您找到正确的正则表达式。
其中一些可能需要一段时间才能完善:P
我最常用的是这个:http://gskinner.com /RegExr/
干杯
There are a lot of online tools that can help you with finding the right RegExp.
Some of them might take you a while to perfect :P
The one I mostly use is this one: http://gskinner.com/RegExr/
Cheers