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.
^.*(?=.{10,})(?=.*\d).*$正規表現バリデータの正規表現パターンがあります。文字列の先頭と末尾の空白を禁止するようにバリデータを変更するにはどうすればよいですか。
^.*(?=.{10,})(?=.*\d).*$
これを試して:
^\s*(.*)\s*$? \s*(.*)
正規表現を次のように変更してみてください。
^\S*(?=.{10,})(?=.*\d)\S*$
\S空白文字以外を意味します。
\S