Adding http:// to all links without a protocol

前端 未结 4 1343
鱼传尺愫
鱼传尺愫 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:58

    C#

     result = new Regex("(href=\")([^(http|https|ftp)])", RegexOptions.IgnoreCase).Replace(input, "href=\"//$2");
    

提交回复
热议问题