RE: Need a tutorial for 'regexpr'

2011-02-10 Thread Chris Matthews
Any alphanumeric character and the underscore; same as [a-zA-Z0-9_]. \W Any non-alphanumeric character; same as [^a-zA-Z0-9_]. = -Original Message- From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Kenneth Gonsalves Sent: 11 F

Re: Need a tutorial for 'regexpr'

2011-02-10 Thread GSV
http://gskinner.com/RegExr/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more

Re: Need a tutorial for 'regexpr'

2011-02-10 Thread Cal Leeming [Simplicity Media Ltd]
Hey, May I strongly recommend you use "RegexBuddy", it really helps both building regex and also learning whilst you use it. The main site doesn't offer a trial download, but this link does: http://www.soft32.com/download_65244.html Cal <3 On Fri, Feb 11, 2011 at 6:47 AM, NavaTux

Re: Need a tutorial for 'regexpr'

2011-02-10 Thread Kenneth Gonsalves
On Thu, 2011-02-10 at 22:47 -0800, NavaTux wrote: > Do you know any elegant tutorial to learn a regular > expression from a nutshell ? i have referred some links which are > given in > a syntax without simple example, just i need a simple examples with > clear > explanation even i tried in past