Academic Work Personal
|
Python /
Perl to Python regular expressions tutorial
Once I made a Perl to Java regular expressions tutorial. This is similar to that but customized for Python. I'll give some examples in Perl on the left side and their Python equivalents on the right side. See also:
Verbose Regular ExpressionsA speciality of Python is the so-called verbose regular expressions. Let's see the first example again: import re text = 'Asian.lst' pattern = """ ^ # beginning of string (.*) # anything \. # a dot lst # the string 'lst'` $ # end of string """ result = re.search(pattern, text, re.VERBOSE) # notice the usage of the re.VERBOSE constant if result: filename = result.group(1) print 'filename:', filename # filename: Asian In this case whitespace characters (as well as comments) are completely ignored in the pattern. |
![]() anime | bash | blogs | bsd | c/c++ | c64 | calc | comics | convert | cube | del.icio.us | digg | east | eBooks | egeszseg | elite | firefox | flash | fun | games | gimp | google | groovy | hardware | hit&run | howto | java | javascript | knife | lang | latex | liferay | linux | lovecraft | magyar | maths | movies | music | p2p | perl | pdf | photoshop | php | pmwiki | prog | python | radio | recept | rts | scala | scene | sci-fi | scripting | security | shell | space | súlyos | telephone | torrente | translate | ubuntu | vim | wallpapers | webutils | wikis | windows Blogs and Dev. * Ubuntu Incident Places Debrecen | France | Hungary | Montreal | Nancy Notes Hobby Projects * Jabba's Codes Quick Links [ edit ] |