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.
文字列のルビの長さをチェックインするにはどうすればよいですか、それは範囲です。
s_query.length?[5..20]
私はルビーに慣れていないのですが、そのようなコードをどのようにコーディングすれば、ifチェックを行うことができますか?
あなたはほとんどそれを手に入れました:
(5..20).cover? s_query.length
これをチェックして
s_query.length.between?(5, 20)
また s_query.length.between?(5,20)
s_query.length.between?(5,20)