Adding http:// to all links without a protocol

前端 未结 4 1341
鱼传尺愫
鱼传尺愫 2021-01-21 02:28

I use VB.NET and would like to add http:// to all links that doesn\'t already start with http://, https://, ftp:// and so on.

\"I want to add http h         


        
4条回答
  •  无人及你
    2021-01-21 02:37

    In PHP (should translate somewhat easily)

    $text = preg_replace('/href="(?:(http|ftp|https)\:\/\/)?([^"]*)"/', 'href="http://$1"', $text);
    

提交回复
热议问题