
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
Python regular expression tester
\B in Python regular expressions
\b in Python regular expressions
Calculator in Python for dummies
Regular Expressions in Javascript cheat sheet
Geeking with Eterm and Tkinter
Printer friendly and PDF version of every page
Next:
So vivid dreams I couldn't get out!
Related blogs
Crontab wizardAnti-spamming email harvesting
Python regular expression tester
\B in Python regular expressions
\b in Python regular expressions
Calculator in Python for dummies
Regular Expressions in Javascript cheat sheet
Geeking with Eterm and Tkinter
Related by category
Recon - Regular Expression Test Console
http://webpages.charter.net/erburley/recon.htmltkinter, gui, regular, expressions, regular expression, recon
14th 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.


Save this page in del.icio.us