LoginSignup
10
3

More than 3 years have passed since last update.

Rubyで文字列を改行区切りで分割する

Posted at

改行文字が何なのか分からなかったり混在している文字列を分割する時これまで

"a\r\nb\rc\n".split(/\r\n|\r|\n/)
=> ["a", "b", "c"]

みたいな事やってたんですが\Rというメタ文字を使うとこれだけで良いんですね。

"a\r\nb\rc\n".split(/\R/)
=> ["a", "b", "c"]

10
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
3