I'm trying to parse through a web page. The first thing I care about is an attribute of a tag that says: id=f6 I want to kill off everything from the beginning of the string up until f6. I have the web page contained in $_ Here is my expression: $_ =~ s/.*?f6//; When I print $_ I am getting the entire webpage. What's wrong with my regex? Help! Thanks...