我有一個像下面這樣一個字符串:紅寶石先進GSUB
My first <a href="http://google.com">LINK</a>
and my second <a href="http://yahoo.com">LINK</a>
如何替換此字符串中的所有環節,從HREF =「URL」到HREF =「/重定向URL =網址是什麼? 「,使它變成
My first <a href="/redirect?url=http://google.com">LINK</a>
and my second <a href="/redirect?url=http://yahoo.com">LINK</a>
謝謝!
你不覺得你欠OP的正則表達式的解釋嗎?我建議你把它寫成多行'r = /.../ x',這樣你可以包含註釋,然後'str.gsub(r)'。我的答案[這裏](http://stackoverflow.com/questions/29216618/consistently-separate-values-in-array/29218517#29218517)給出了一個例子。 – 2015-04-05 21:06:36
@CarySwoveland我的不好,補充說明。 – 2015-04-05 22:41:21
這次你被原諒了。 – 2015-04-06 00:06:44