以防止字符集的正则

发布于 2025-02-02 15:44:24 字数 163 浏览 1 评论 0原文

我需要防止用户输入以下字符: ;? / \ {|}

〜“#%& *:& lt

。例如,也禁止!

  private static folderRegex = /^[A-Za-z0-9_-]+[ßüÜöÖäÄ\w]*$/;

I need to prevent user from entering the following set of chars:
~ " # % & * : < > ? / \ { | } .

Important is that, anything else will be allowed, but only the characters shown above will be forbidden.

Currently, I'm using the following regex but this does also forbid for example ! sign.

  private static folderRegex = /^[A-Za-z0-9_-]+[ßüÜöÖäÄ\w]*$/;

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

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

发布评论

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

评论(1

隐诗 2025-02-09 15:44:24

只需将一组字符放在反向集中,然后添加^和a $即可将模式扩展到输入的全长。

 private static folderRegex = /^[^~"#%&*:<>?\/\\{|}]+$/;

Just put the set of characters in an inverse set and add a ^ and a $ to stretch the pattern to the full length of the input.

 private static folderRegex = /^[^~"#%&*:<>?\/\\{|}]+$/;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文