How to split a string in Ruby and get all items except the first one?

前端 未结 9 1860
日久生厌
日久生厌 2021-01-31 06:47

String is ex=\"test1, test2, test3, test4, test5\"

when I use

ex.split(\",\").first

it returns

\"test1\"
         


        
9条回答
  •  终归单人心
    2021-01-31 07:25

    Try split(",")[i] where i is the index in result array. split gives array below

    ["test1", " test2", " test3", " test4", " test5"] 
    

    whose element can be accessed by index.

提交回复
热议问题