Struts 正则表达式验证
我使用的是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不涉及正则表达式,也不需要转义字符:) - 尽管可能有更好的方法。
No regex involved, and no need to escape chars :) - although there may be better ways of doing it.
这可能对你有帮助
This might help you