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.
次のような文字列があります。
14.015_KNECHT_178178
次のように分割するにはどうすればよいですか。
art = 14.015 man = KNECHT
ご覧のとおり、区切り記号は_です。
_
string#splitはこれを行うことができます。
>> (art,man,foo) = "14.015_KNECHT_178178".split '_' => ["14.015", "KNECHT", "178178"] >> p art "14.015" => "14.015" >> p man "KNECHT" => "KNECHT" >> p foo "178178" => "178178"
これを試して
art,man= "14.015_KNECHT_178178".split(/_/)
#splitの詳細については、こちらをご覧ください