CoffeeScript攻略3.7:拆分字串

CoffeeScript Cookbook發表於2011-11-26

問題

你想拆分一個字串。

方案

使用JavaScript字串的split()方法:

"foo bar baz".split " "
# => [ 'foo', 'bar', 'baz' ]

討論

String的這個split()方法是標準的JavaScript方法。可以用來基於任何分隔符——包括正規表示式來拆分字串。這個方法還可以接受第二個引數,用於指定返回的子字串數目。

"foo-bar-baz".split "-"
# => [ 'foo', 'bar', 'baz' ]

"foo   bar  \t baz".split /\s+/
# => [ 'foo', 'bar', 'baz' ]

"the sun goes down and I sit on the old broken-down river pier".split " ", 2
# => [ 'the', 'sun' ]

enter image description here

相關文章