0
我有一個字符串,它類似於此:正則表達式來查找字符串兩個URL
|image: http://product_image.png |product: http://product_url.html
所以,圖案|圖片:網址|產品:URL
我怎樣才能找到這些Ruby中有兩個URL?
我有一個字符串,它類似於此:正則表達式來查找字符串兩個URL
|image: http://product_image.png |product: http://product_url.html
所以,圖案|圖片:網址|產品:URL
我怎樣才能找到這些Ruby中有兩個URL?
試試這個正則表達式:
regex = /image: (.+) \|product: (.+)/
result = regex.match("|image: http://product_image.png |product: http://product_url.html")
puts result[1] # http://product_image.png
puts result[2] # http://product_url.html