Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^3: How to grep exact string

by frozenwithjoy (Priest)
on Nov 15, 2012 at 08:29 UTC ( [id://1003957]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to grep exact string
in thread How to grep exact string

I believe the way you have it is a correct way to do it (see grep):
grep ( /^$unique$/, @first_list_new )
An alternate syntax is:
grep { /^$unique$/ } @first_list_new

Replies are listed 'Best First'.
Re^4: How to grep exact string
by tobyink (Canon) on Nov 15, 2012 at 08:38 UTC

    That's not a search for an exact string though. $unique might contain regexp metacharacters like ".".

    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
      Ah yes! Good point. Thanks.

      EDIT: But wait.... Your suggestion of grep { $_ eq $unique } @first_list_new isn't detecting any actual matches for me.

      EDIT #2: Nevermind... tyop. er, typo.

        It's not clear why this would be. grep {$_ eq $unique} should be exactly equivalent to grep /^$unique$/, as long as $unique doesn't have any regex metacharacters--and it doesn't appear to in the sample data.


        When's the last time you used duct tape on a duct? --Larry Wall

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-24 05:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found