We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
今天遇到 HTML 页面中直接写了 JavaScript 的验证的表达式:
'[©]+'
里面涉及了一个特殊字符 ©,页面第一次加载时,一起正常,但是 ajax 提交后,pjax reload 页面后,© 被 encode
©
解决方法:使用 unicode [\\u00A9]+
[\\u00A9]+
The text was updated successfully, but these errors were encountered:
一款很秀的 正则表达式 工具推荐给大家 jex.im/regulex
Sorry, something went wrong.
No branches or pull requests
今天遇到 HTML 页面中直接写了 JavaScript 的验证的表达式:
里面涉及了一个特殊字符
©
,页面第一次加载时,一起正常,但是 ajax 提交后,pjax reload 页面后,©
被 encode解决方法:使用 unicode
[\\u00A9]+
The text was updated successfully, but these errors were encountered: