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 message_regex = /^[a-z]{10,500}$/;
ユーザーが最低 10 文字を入力したかどうかをチェックします。うまくいきますが、空白を含めると文字としてカウントされませんか?
例:
asdfasdfas
上記は10文字としてカウントされます
asdas asda s
上記は 10 文字としてカウントされません。
この正規表現に空白や特殊文字を追加するにはどうすればよいですか?
.すべての文字に一致させるために を使用しないのはなぜですか?
.
var message_regex = /^.{10,500}$/;
これにより、テキストエリアが 10 ~ 500 文字になるようにします。
これを試して
var message_regex = /^[a-z ]{10,500}$/;
az の末尾のスペースに注意してください