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.
テキスト フィールドが数値とスペースのみを受け入れるようにします。これの正規表現は何ですか?\d+$ 私はおかげで試していました
\d+$
これは動作するはずです:
[0-9 ]+
^文字列の始まり。 [\d ]*この記号の任意の組み合わせ。 $文字列の終わり。
^
[\d ]*
$
^[\d ]*$
使いたい[0-9 ]+