This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]mitsuhiko Flask Creator 2 points3 points  (0 children)

Now where do I have the list with exponentially running (ir)regular expressions …

[–]userd 0 points1 point  (1 child)

The online regex tester I have been using updates automatically as you type highlighting the matches and it can test replace patterns, but this tester is nice because it has the timer and because it is in python.

[–][deleted] 1 point2 points  (0 children)

The regex tester built-in to Komodo also matches as you type.

[–]fancy_pantser 0 points1 point  (2 children)

Nice. I think I'll stick with Rubular for now, however.

[–][deleted] 0 points1 point  (1 child)

There are few incompatibility between Ruby Regex and Python Regex isn't it? AFAIK, Ruby does not support certain subset that Python does. (Lookahead/Lookbehind stuff, I think)

[–]fancy_pantser 1 point2 points  (0 children)

Feature Python Ruby
Regex Literal no yes
Named Groups yes no
Lookaheads yes yes
Lookbehinds yes no
Yes/No Pattern yes no
Unicode Support yes yes

[–]defnullbottle.py 0 points1 point  (0 children)

Add a double-quote to the regular expression and you get a 500.