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

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

    if u want to use them as an array u already knew, else u can use every one of them as a different parameter ... try this :

    parameter1,parameter2,parameter3,parameter4,parameter5 = ex.split(",")
    

提交回复
热议问题