如何從字符串中將所有https
替換爲http
?紅寶石替換img src https到http
<img src="https
<img src='https
<img title="title" src="https
因爲這種類型的組合
"text <img src='https://image.com/img.jpg' /> text".gsub('<img src="https', '<img src="http')
會讓HTTPS未置換的。
gsub('https', 'http')
不好,因爲我不想替換鏈接。
的理想解決方案將是Web服務器重新定向到'https' URL –
如果你只需要正則表達式的GSUB: '.gsub(/