Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一些代码:
<form> <input type="text" name="Title" pattern="[a-zA-Z0-9`\~\!\@\#\$\%\^\&\*\(\)\-\\\\=\+\{\}\[\]\']{2,40}" required> <input type="submit"> </form>
我想在正则表达式中添加引号,但是\"不起作用并且 " 也不起作用...
\"
所以我可以用 . 替换引号\x22。现在我必须弄清楚要使用哪一个(我可以改为禁止而不是允许,或者使用\x22代替引号)。我不记得我选择特别允许的所有原始原因,所以我可能会坚持用 替换它\x22,因为它是如此简单且修改较少。
\x22