RegExpValidator MXML

发布于 2024-11-08 20:10:00 字数 510 浏览 0 评论 0原文

您好
我的正则表达式有问题。我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柒夜笙歌凉 2024-11-15 20:10:00

想象一下字符串abc。如果您将正则表达式 .*[^ab].* 应用于它,第一个 .* 将匹配 ab[ ^ab] 匹配 c,最后的 .* 匹配空字符串。

另外,如果您不将正则表达式锚定到字符串的开头和结尾,则如果只有子字符串匹配,正则表达式可能会声明成功(取决于验证器的实现)。

您想要这样:

^[^ab]*$

它匹配除 ab 之外的任意数量的字符。 ^ 将正则表达式锚定到字符串的开头,$ 锚定到字符串的结尾。

Imagine the string abc. If you apply the regex .*[^ab].* to it, the first .* will match ab, the [^ab] matches c, 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:

^[^ab]*$

This matches any number of characters except a or b. ^ anchors the regex to the start, $ to the end of the string.

你爱我像她 2024-11-15 20:10:00

有很多在线工具可以帮助您找到正确的正则表达式。
其中一些可能需要一段时间才能完善: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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文