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.
次のテキストファイルがあるとします。
abcd,efgh,ijkl mnop,qrst 12345,78 poqs,90st
","または、"\t"またはのどちらか早い方まで文字列を読みたい"\n"。
","
"\t"
"\n"
これを行うためのRubyメソッドはありますか?
私はこのようなものがうまくいくと思います:
open('file.txt').read.split(/\t\n,/)
基本的にファイルを開き、ファイルの文字列出力を取得し、タブ、改行、またはコンマで分割します。
File.read('file.txt').scan(/\w+/)
区切り文字に関係なく、すべての単語をスキャンします。