Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)]://
share|improve this question
4  
If you're checking just the start of the string, it's probably faster to just do a straight comparison of the first few characters of the string with the patterns you're looking for. – templatetypedef Jan 10 '11 at 2:03
You are creating a character group with []. It will mach one character that is either (,),h,t,t,p or s. I.e. it would match s:// but not ht:// or x://. – Felix Kling Jan 10 '11 at 2:05
1  
@templatetypedef: I think I sense some premature optimization. – cdhowie Jan 10 '11 at 2:20
1  
@template explain how? – Click Upvote Jan 10 '11 at 2:24
Many modern regular expression libraries are very fast. Unless there is (lots of) back-tracking, regular expressions may compare favorably -- or better -- to "index-of" style approaches (compare /^x/ vs indexOf(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

4 Answers

up vote 32 down vote accepted

Your use of [] is incorrect -- note that [] denotes a character class and will therefore only ever match one character. The expression [(http)(https)] translates to "match a (, an h, a t, a p, a ), or an s." (Duplicate characters are ignored.)

Try this:

^https?://

If you really want to use alternation, use this syntax instead:

^(http|https)://
share|improve this answer
^https?://

You might have to escape the forward slashes though, depending on context.

share|improve this answer

This should work

^(http|https)://
share|improve this answer

Case insensitive:

var re = new RegExp("^(http|https)://", "i");
var str = "My String";
var match = re.test(str);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.