Comment puis-je ajouter http://
à une URL si elle n'inclut pas déjà un protocole (par exemple http://
, https://
ou ftp://
)?
Exemple:
addhttp("google.com"); // http://google.com
addhttp("www.google.com"); // http://www.google.com
addhttp("google.com"); // http://google.com
addhttp("ftp://google.com"); // ftp://google.com
addhttp("https://google.com"); // https://google.com
addhttp("http://google.com"); // http://google.com
addhttp("rubbish"); // http://rubbish
mozilla.org
seul, comment sauriez-vous si cela devrait êtrehttp
,https
ouftp
?