Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: grep regex exact match last n positions

by nvivek (Vicar)
on Apr 13, 2010 at 05:36 UTC ( [id://834405]=note: print w/replies, xml ) Need Help??


in reply to grep regex exact match last n positions

If you want to match the string in the array end with same number of characters as the pattern.Then,you try this.
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
    That's an expensive way of doing substr! Not to mention that your regexp actually doesn't find the last 3 characters - it finds the first 3 characters following the last word boundary.
    print grep {substr($_, -length($search)) eq $search} @array;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://834405]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (2)
As of 2024-04-19 19:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found