限制文本输入字段中的字符集

发布于 2024-12-27 15:32:46 字数 248 浏览 3 评论 0原文

我有一个 TextInput 字段,应限制为大写字母、小写字母、数字和下划线。这是我试图用来限制字符的代码:

restrict="\\A-Z\\a-z\\0-9\\ \\_\\-"

我正在为这个 Textinput 组件使用 MXML。

不幸的是,这并没有限制 \ 字符,这是我想限制的最后一个字符。

如何将反斜杠添加到受限字符列表中?

谢谢

斯蒂芬

I have a TextInput field that should be restricted to either capital letters, lowercase letters, numbers and underscores. This is the code I'm trying to use to restrict characters:

restrict="\\A-Z\\a-z\\0-9\\ \\_\\-"

I'm using MXML for this Textinput component.

Unfortunately this does not restrict the \ character, which is the last character I'd like to restrict.

How can I add the backslash to the list of restricted characters?

Thanks

Stephen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

無心 2025-01-03 15:32:46

实际上找到了解决方案,我已将限制代码修改为:

restrict="A-Za-z0-9 _\-"

我取出了我认为或正在用作分隔符的所有反斜杠。

现在工作正常。

Actually found the solution I've amended the restrict code to:

restrict="A-Za-z0-9 _\-"

I took out all the back slashes which I thought or was using as delimiters.

Works fine now.

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