2013-04-17 145 views
0
String = "Mod1:10022932,10828075,5946410,13321905,5491120,5030731|Mod2:22704455,22991440,22991464,21984312,21777721,21777723,21889761,21939852,23091478,22339903,23091485,22099714,21998260,22364832,21939858,21944274,21944226,22800221,22704443,21777728,21777719,21678184,21998265,21834900,21984331,22704454,21998261,21944214,21862610,21836482|Mod3:10828075,13321905,5491120,5946410,5030731,15806212,4100566,4787137,2625339,2408317,2646868,19612047,2646862,11983534,8591489,19612048,10249319,14220471,15806209,13330887,15075124,17656842,3056657,5086273|Mod4:10828075,5946410,13321905,5030731,5491120,4787137,4100566,15806212,2625339,3542205,2408317,2646862,2646868|Mod5:10022932;0.2512,10828075;0.2093,5030731;0.1465,5946410;0.1465,4787137;0.1465,2625339;0.0143,5491120;0.0143,13321905;0.0143,3542205;0.0143,15806212;0.0119,4100566;0.0119,19612047;0.0100,2408317;0.0100" 

我該如何拆分它,以便我可以獲得每個標題(Mod1,Mod2 ..)和屬於每個標題的ID。紅寶石拆分字符串

這是我迄今爲止試過的,這是刪除管道後,我不想要的一切。

mod_name = string.split(":")[0] 
mod_ids = string.split(":")[1] #This gets me the ID's but also include the |Mod* 
ids = mod_mod_ids.split("|").first.strip #Only returns Id's before the first "|" 

所需的輸出: 我需要保存mod_name和mod_ids各自列,

mod_name = #name ("Mod1...Mod2 etc) #string 
mod_ids = #ids (All Ids after the ":" in Mod*:) #array 
+0

你需要做的是在第一次分裂「|」給你一個形式爲'Mod1:num,num,num'的字符串數組,然後遍歷該數組,並將每個元素拆分爲「:」以從名稱中分離出ID。 – DiMono

+1

你應該指定你想要的輸出類型 – Zippie

+0

@Zippie,補充。謝謝。 – Yogzzz

回答

1

我想這你想要做什麼:

ids = string.split("|").map {|part| [part.split(":")[0], part.split(":")[1].split(/,|;/)]} 
1

有幾個方法可以做到這一點:

# This will split the string on "|" and ":" and will return: 
# %w(Mod1 id1 Mod2 id2 Mod3 id3 ...) 
ids = string.split(/[|:]/) 

# This will first split on "|", and for each string, split it again on ":" and returs: 
# [ %w(Mod1 id1), %w(Mod2 id2), %w(Mod3 id3), ... ] 
ids = string.split("|").map { |str| str.split(":") } 
0

未測試:

all_mods = {} 
string.split("|").each do |fragment| 
    mod_fragments = fragment.split(":") 
    all_mods[mod_fragments[0]] = mod_fragments[1].split(",") 
end 
0

我最終什麼事用感謝@tillerjs幫助。

data = sting.split("|") 
data.each do |mod| 
    module_name = mod.split(":")[0] 
    recommendations = mod.split(":")[1] 
end 
1

如果你想要一個哈希作爲通過標題容易訪問的結果,那麼你可以這樣做:

str.split('|').inject({}){|h,x| k,v = x.split(':'); h[k] = v.split(','); h} 

    => { 
     "Mod1"=>["10022932", "10828075", "5946410", "13321905", "5491120", "5030731"], 
     "Mod2"=>["22704455", "22991440", "22991464", "21984312", "21777721", "21777723", "21889761", "21939852", "23091478", "22339903", "23091485", "22099714", "21998260", "22364832", "21939858", "21944274", "21944226", "22800221", "22704443", "21777728", "21777719", "21678184", "21998265", "21834900", "21984331", "22704454", "21998261", "21944214", "21862610", "21836482"], 
     "Mod3"=>["10828075", "13321905", "5491120", "5946410", "5030731", "15806212", "4100566", "4787137", "2625339", "2408317", "2646868", "19612047", "2646862", "11983534", "8591489", "19612048", "10249319", "14220471", "15806209", "13330887", "15075124", "17656842", "3056657", "5086273"], 
     "Mod4"=>["10828075", "5946410", "13321905", "5030731", "5491120", "4787137", "4100566", "15806212", "2625339", "3542205", "2408317", "2646862", "2646868"], 
     "Mod5"=>["10022932;0.2512", "10828075;0.2093", "5030731;0.1465", "5946410;0.1465", "4787137;0.1465", "2625339;0.0143", "5491120;0.0143", "13321905;0.0143", "3542205;0.0143", "15806212;0.0119", "4100566;0.0119", "19612047;0.0100", "2408317;0.0100"] 
    } 
+0

這太棒了。謝謝! – Yogzzz