
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this page
Previous:
Printer friendly and PDF version of every page
Next:
So vivid dreams I couldn't get out!
Anti-spamming email harvesting
Geeking with Eterm and Tkinter
Regular Expressions in Javascript cheat sheet
Calculator in Python for dummies
\b in Python regular expressions
\B in Python regular expressions
Python regular expression tester
Printer friendly and PDF version of every page
Next:
So vivid dreams I couldn't get out!
Related blogs
Crontab wizardAnti-spamming email harvesting
Geeking with Eterm and Tkinter
Regular Expressions in Javascript cheat sheet
Calculator in Python for dummies
\b in Python regular expressions
\B in Python regular expressions
Python regular expression tester
Related by category
Recon - Regular Expression Test Console
http://webpages.charter.net/erburley/recon.html14th of January 2004
This is a fantastic little Python GUI using Tkinter, for testing your regular expressions in Python. You first paste or write in some text, then you doodle some regular expressions to see the outcome. What I do miss is exporting of actual code. Usually when I write my regular expression I fire up the interactive shell from which I can copy code when I'm happy with it. Like this:
>>> import re
>>> e=re.compile(r'\?q=(.*?)&', re.I)
>>> print e.findall("http://www.google.com.br/search?q=paper+plane&hl=pt-BR")
['paper+plane']
>>> e=re.compile(r'\?q=(.*?)&', re.I)
>>> print e.findall("http://www.google.com.br/search?q=paper+plane&hl=pt-BR")
['paper+plane']
From silly code like that I can actually copy and paste the actual syntax. Ah well, I still like this Recon thing.

