2017-07-11 63 views
1

我正在使用Nokogiri來搜索網頁上的一些信息。找到它後,我得到以下字符串:如何分割一個字符串與<br>在紅寶石

<p></p> 
<p>Spiegel Institut Communication GmbH &amp; Co. KG i. G.<br>Eastsite 
VI<br>Hermsheimer Straße 5<br>D-68163 Mannheim<br>Telefon: +49 621-728 44- 
444<br>Telefax: +49 621-728 44-445<br>E-Mail: [email protected] 
institut.de<br>Geschäftsführer:<br>Dipl.-Kfm. Götz Spiegel<br>Amtsgericht 
Mannheim<br>Inhaltlich Verantwortlicher gemäß § 10 Absatz 3 MDStV: Götz 
Spiegel (Anschrift wie oben)</p> 

這是一條線。我想將
上的字符串分隔成一個新行,以便我可以從中獲得單個詳細信息。我該如何解決它?我是Ruby新手,我嘗試過,但不知何故,我無法得到我想要的結果。

非常感謝您

+0

html_safe方法可以幫助你使用上下文HTML –

回答

1

這是比較簡單的,用弦上split方法。例如:

'this<br>that<br> the other'.split("<br>") 

會導致

["this", "that", " the other"] 
+0

謝謝。就是這樣。 – AbelSantos

0

你可以使用split方法:

string.split('<br>')