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

前端 未结 9 1848
日久生厌
日久生厌 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:42

    Try this:

    first, *rest = ex.split(/, /)
    

    Now first will be the first value, rest will be the rest of the array.

提交回复
热议问题