mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #2839 from yui-knk/fix/string_split_sample
[ci skip] Remove some Srting#split samples
This commit is contained in:
@@ -1715,10 +1715,8 @@ mrb_str_rindex_m(mrb_state *mrb, mrb_value str)
|
||||
* " now's the time".split #=> ["now's", "the", "time"]
|
||||
* " now's the time".split(' ') #=> ["now's", "the", "time"]
|
||||
* " now's the time".split(/ /) #=> ["", "now's", "", "the", "time"]
|
||||
* "1, 2.34,56, 7".split(%r{,\s*}) #=> ["1", "2.34", "56", "7"]
|
||||
* "hello".split(//) #=> ["h", "e", "l", "l", "o"]
|
||||
* "hello".split(//, 3) #=> ["h", "e", "llo"]
|
||||
* "hi mom".split(%r{\s*}) #=> ["h", "i", "m", "o", "m"]
|
||||
*
|
||||
* "mellow yellow".split("ello") #=> ["m", "w y", "w"]
|
||||
* "1,2,,3,4,,".split(',') #=> ["1", "2", "", "3", "4"]
|
||||
|
||||
Reference in New Issue
Block a user