Struts 正则表达式验证

发布于 2024-09-10 07:04:17 字数 117 浏览 4 评论 0原文

我使用的是struts 1.2。 我需要设计一个拒绝字符 %,/,?,<,> 的验证。 正如您可以识别的最后两个字符需要转义,但我无法在struts中找到任何特定的正则表达式规则。

I am using struts 1.2.
I need to design a validation that reject characters %,/,?,<,>.
As you can identify last two characters need to be escaped but I am unable to find any specific rules of regex in struts.

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

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

发布评论

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

评论(2

任性一次 2024-09-17 07:04:17
String str; //the string to check - load it up with the value from the form
....

if(str.contains("%") || str.contains("/") || str.contains("?") || str.contains("<") || str.contains(">")){
  //string contains invalid chars
}else{
  //string contains vaild chars
}

不涉及正则表达式,也不需要转义字符:) - 尽管可能有更好的方法。

String str; //the string to check - load it up with the value from the form
....

if(str.contains("%") || str.contains("/") || str.contains("?") || str.contains("<") || str.contains(">")){
  //string contains invalid chars
}else{
  //string contains vaild chars
}

No regex involved, and no need to escape chars :) - although there may be better ways of doing it.

鹿港巷口少年归 2024-09-17 07:04:17

这可能对你有帮助

<constant>
      <!--All characters except < > " ' & % ; | and ~-->
      <constant-name>allchars</constant-name>
      <constant-value>^[^<>"'&%;|~]*
lt;/constant-value>
 </constant>

This might help you

<constant>
      <!--All characters except < > " ' & % ; | and ~-->
      <constant-name>allchars</constant-name>
      <constant-value>^[^<>"'&%;|~]*
lt;/constant-value>
 </constant>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文