in reply to grep regex exact match last n positions
my $search = "foo"; my $len=length($search); #finding the length of the pattern my @array = ("s1 bar", "foo", "s3 foo"); print grep {/.*\b(.{$len})/;$_=$& if $1 eq $search;} @array; #checking whether the end characters of the string in the array is same as the pattern given
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: grep regex exact match last n positions
by JavaFan (Canon) on Apr 13, 2010 at 07:02 UTC |