If I want to match $.58 in $.589922 How do I do it with Regular Expressions? >>> s=re.search("\$\.[0-9]{2}", "$.589922") >>> s.string '$.589922' and not '$.58' which i s what I want I think it has something to do with Greediness right?