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.
文字列が数値のみか、英数字かを確認したい。
例えば :
string test = "2323212343243423333"; string test1 = "34323df23233232323e";
番号のみのテストかどうかを確認したい。数値を持つ文字列全体が意味する場合は、true を返します。それ以外の場合は false を返します。
これどうやってするの?