HTML5 input pattern search for quote

后端 未结 2 2049
时光取名叫无心
时光取名叫无心 2020-12-01 19:16

I need to test an input field () against this regex:

[^\'\"]+

This obviously is no easy task as

2条回答
  •  自闭症患者
    2020-12-01 19:47

    The HTML5 @pattern attribute regex is based on JavaScript regex, so you can use hexadecimal notation or unicode notation for that char as you would in JavaScript:

    " = \x22 OR \u0022
    ' = \x27 OR \u0027
    

    So that you can easily use

    pattern="[^'\x22]+"
    

    TADA! No JavaScript libraries involved! ;)

提交回复
热议问题