I'm trying to set a regexp which will check the start of a string, and if it contains either http:// or https:// it should match it.
How can I do that? I'm trying the following which isn't working:
^[(http)(https)]://
|
I'm trying to set a regexp which will check the start of a string, and if it contains either How can I do that? I'm trying the following which isn't working:
|
||||
|
Your use of Try this:
If you really want to use alternation, use this syntax instead:
|
|||
|
|
You might have to escape the forward slashes though, depending on context. |
|||
|
|
|
Case insensitive:
|
|||
|
|
[]. It will mach one character that is either(,),h,t,t,pors. I.e. it would matchs://but notht://orx://. – Felix Kling Jan 10 '11 at 2:05/^x/vsindexOf(x) == 0). "starts with" style approaches may have less overhead, but I suspect it rarely matters -- choose what is the cleanest, which very well may be:x.StartWith("http://") || x.StartsWith("https://")-- but do so out of code clarity, not an attempt to improve performance unless justified with analysis and requirements :-) – user166390 Jan 10 '11 at 2:42