I want to be able to check a string to see if it has http:// at the start and if not to add it.
if (regex expression){
string = "http://"+string;
}
Does anyone know the regex expression to use?
|
|
If you don't need a regex to do this (depending on what language you're using), you could simply look at the initial characters of your string. For example:
|
|||||||||
|
|
Should be:
And remember to use this with |
|||
|
|
|
Something like this should work |
||||
|
|
Is more sexy |
|||
|
|
|
If javascript is the language needed here, then look at this post which adds "startswith" property to the string type. |
|||
|
|