我試圖用<a href="http://example.com">example.com</a>
取代所有example.com
實例替換字符串中的一個值:正則表達式在Ruby中
content.gsub(/example\.com/, '<a href="http://example.com">example.com</a>')
但我並不想取代example.com
如果有前一個句點,像在www.example.com
。所以我的第一個想法是做正則表達式/[^\.]example.com/
。但是,當然,gsub!
也會替換example.com
之前的字符。
有沒有一種簡單的方法來取代所有在前面沒有.
的example.com
?