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.
0から999999の範囲のすべての正の非小数整数にのみ一致する正規表現が必要です。これは、10進数、アルファベット、または特殊文字を受け入れず、範囲は0から999999の間でなければなりません。
これでうまくいくはずです。
Regex.IsMatch("999999","^[0-9]{0,6}$");//return true