string - how I could redirect variable that contain a value and the value contain another value in ruby? -
i have variable varpage equal start , need obtain start value output , save file
this code
varpage="start" start="1,4,1,0,1,1,1,30,12,;1,4,1,2,1,1,1,30,29,;1,5,1,2,0,1,1,30,29,;1,4,1,2,0,1,1,30,29,;1,4,1,0,1,1,1,30,29,;" file.open("mmmm3", "w") |f| f.puts "@#{varpage}" end
i expected output
"1,4,1,0,1,1,1,30,12,;1,4,1,2,1,1,1,30,29,;1,5,1,2,0,1,1,30,29,;1,4,1,2,0,1,1,30,29,;1,4,1,0,1,1,1,30,29,;"
please me
if understand question correctly, can use hash:
varpage = "start" options = {"start" => "1,4,1,0,1,1,1,30,12,;1,4,1,2,1,1,1,30,29,;1,5,1,2,0,1,1,30,29,;1,4,1,2,0,1,1,30,29,;1,4,1,0,1,1,1,30,29,;"} file.open("mmmm3", "w" |f| f.puts options[varpage] end
Comments
Post a Comment