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.
私の正規表現は次のとおりです。
var re = /^[a-z A-Z._]{1,15}$/;
これを許可したい: '(一重引用符)。
'
これどうやってするの?
たとえば、次の正規表現を使用して、次のような文字列を許可できますabcd'dfgh。
abcd'dfgh
/^[A-Za-z\/\']+[A-Za-z]$/
一重引用符を許可するには、次のような文字クラスに追加します^[a-z A-Z._']{1,15}$
^[a-z A-Z._']{1,15}$
この正規表現により、マッチング'などが可能になります。'abc'_a'b'c_
'abc'_
a'b'c_