Repetition patterns, matching vs searching. : match « Regular Expressions « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » Regular Expressions » match 
16.4.5.Repetition patterns, matching vs searching.
import re

testStrings = "Heo""Helo""Hellllo" ]
expressions = "Hel?o""Hel+o""Hel*o" ]

# match every expression with every string
for expression in expressions:
   for string in testStrings:
      if re.matchexpression, string ):
         print expression, "matches", string
      else:
         print expression, "does not match", string
   print

# demonstrate the difference between matching and searching
expression1 = "elo"    # plain string
expression2 = "^elo"   "elo" at beginning of string
expression3 = "elo$"   "elo" at end of string

if re.matchexpression1, testStrings] ):
   print expression1, "matches", testStrings]

if re.searchexpression1, testStrings] ):
   print expression1, "found in", testStrings]

if re.searchexpression2, testStrings] ):
   print expression2, "found in", testStrings]

if re.searchexpression3, testStrings] ):
   print expression3, "found in", testStrings]
16.4.match
16.4.1.Matching Strings with match()
16.4.2.Here is an example of a failed match where None is returned:
16.4.3.Repetition, Special Characters, and Grouping
16.4.4.Compiled regular-expression and match objects.
16.4.5.Repetition patterns, matching vs searching.
16.4.6.classes and special sequences.
16.4.7.Dig out path
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.