Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような文字列があります。
|image: http://product_image.png |product: http://product_url.html
したがって、パターンは |image: URL |product: URL です。
Rubyでこれら2つの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