改行文字が何なのか分からなかったり混在している文字列を分割する時これまで
"a\r\nb\rc\n".split(/\r\n|\r|\n/)
=> ["a", "b", "c"]
みたいな事やってたんですが\Rというメタ文字を使うとこれだけで良いんですね。
"a\r\nb\rc\n".split(/\R/)
=> ["a", "b", "c"]
Go to list of users who liked
More than 5 years have passed since last update.
改行文字が何なのか分からなかったり混在している文字列を分割する時これまで
"a\r\nb\rc\n".split(/\r\n|\r|\n/)
=> ["a", "b", "c"]
みたいな事やってたんですが\Rというメタ文字を使うとこれだけで良いんですね。
"a\r\nb\rc\n".split(/\R/)
=> ["a", "b", "c"]
Register as a new user and use Qiita more conveniently
Go to list of users who liked