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.
私のテストの 1 つで、値が 0 から 9 までの 8 桁の数字であるかどうかを確認し、より汎用的にしたいのですが、Ruby でこれを行うにはどうすればよいですか?
例: 36756786、38796809 など。
これを試して:
numberString =~ /\A(\d){8}\Z/