Live data from Hacker News

Your Python Regular Expression's Best Buddy

pyregex.com

11–17 of 17 posts

Re: Your Python Regular Expression's Best Buddy

#13

Perhaps related -- some genius has registered http://strftime.org and lists out python strftime formatting directives. Very handy as a quick reference.

What's wrong with "man date" ? ;) Except of course if you are using Windows in which case manpages are a no-no.

Re: Your Python Regular Expression's Best Buddy

#14

This is really nice, but I've always enjoyed RegexPal [1]. It's got a nice clean simple UI, displays results immediately and allows me to prototype regular expressions very quickly. Use it almost every time I wrote a regex. [1] http://regexpal.com/

The problem is, regex flavors differ, and RegexPal uses JavaScript - whose regex flavor is really limited compared to most others (including Python). You should always try to find a tool that uses the regex flavor you are targeting.
Post reply on HN