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.
http://
\"I want to add http h
C#
result = new Regex("(href=\")([^(http|https|ftp)])", RegexOptions.IgnoreCase).Replace(input, "href=\"//$2");