Tuesday, April 1, 2008

Non-greedy Quantifiers

Quantifier

Description
\{-}
matches 0 or more of the preceding atom, as few as possible
\{-n,m}
matches 1 or more of the preceding characters...
\{-n,}
matches at lease or more of the preceding characters...
\{-,m}
matches 1 or more of the preceding characters...
where n and m are positive integers (>0)

http://www.geocities.com/volontir/#Non-Greedy

No comments: