End of line anchor : Anchors « Regular Expression « Perl






End of line anchor

    

while(<DATA>){
    print if /10$/;
}
__DATA__
    1.10
    .5
    555.10
    4.01
    .501
    601

   
    
    
    
  








Related examples in the same category

1.The ^ and $ Pattern Anchors
2.Check beginning
3.Check beginning and end
4.Check end
5.A negative look ahead
6.A negative look behind
7.A positive look ahead
8.A positive look behind
9.Anchoring Metacharacters
10.Beginning of line anchor
11.Clustering and anchors
12.Beginning and end of word anchors
13.Get begin of the line
14.Searching from the beginning and the end
15.Shouldn't start a sentence with a period
16.Word-Boundary Pattern Anchors