vote up 1 vote down star

I have this line of code in javascript

var re = (http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?

Usually I encapsulate the regex syntax with the / characters but since they are found within the regex it screws up the encapsulation. Is there another way how I can store it inside the variable?

The current slashes that seem like escape characters are part of the regex, since I am using this in c# aswell and works perfectly

flag

What's with the &? That doesn't quite work with the character class. Also, no need to escape the + or . inside the character class. – Tim Pietzcker Sep 15 at 15:14

3 Answers

vote up 3 vote down check

One way is to escape all occurances of / in your regex as \/, like you're already partially doing:

var re = /(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:\/~\+#]*[\w\-\@?^=%&\/~\+#])?/;
link|flag
Worked as you said – Drahcir Sep 15 at 15:35
vote up 1 vote down

You can escape the slash inside your regex:

/(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:\/~\+#]*[\w\-\@?^=%&\/~\+#])?/

(you already did so with the first two slashes...)

link|flag
vote up 4 vote down
var re = new RegExp("^your regexp.*$", "gi");
link|flag

Your Answer

Get an OpenID
or

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