vote up 3 vote down star

Are Python and JavaScript regular expression syntax identical?

If not, then:

  1. What are the important differences between them
  2. Is there a python library that "implements" JavaScript regexps?
flag

3 Answers

vote up 10 vote down check

There is a comparison table here:

Regex Flavor Comparison

link|flag
+1: Wow, what a lot of stuff. – S.Lott Mar 11 at 21:53
Thanks! My attempts at googling the answer failed. Now, I guess the follow up question is: "Is there a python library that 'implements' javascript regexps?" – Dave Peck Mar 11 at 21:59
I don't know of one. What is the root reason for wanting one? – EBGreen Mar 12 at 13:14
vote up 0 vote down

Part 1
They are different; One difference is Python supports Unicode and Javascript doesn't.

Part 2
Read Mastering Regular Expressions. It gives information on how to identify the back-end engines (DFA vs NFA vs Hybrid) that a regex flavour uses. It gives tons of information on the different regex flavours out there.

There is way too much information to convey on a single SO answer, so you're better off having a solid piece of reference material on the subject.

(Yes, I'm from Canada... how could you tell, eh?)

link|flag

Your Answer

Get an OpenID
or

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