Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: perlfunc index name conflict

by Anonymous Monk
on Sep 24, 2012 at 00:09 UTC ( [id://995272]=note: print w/replies, xml ) Need Help??


in reply to Re: perlfunc index name conflict
in thread perlfunc index name conflict

the second parameter should be a substring to match, not a regular expression

Well, /(\w+)/ will return a substring

Replies are listed 'Best First'.
Re^3: perlfunc index name conflict
by AnomalousMonk (Archbishop) on Sep 24, 2012 at 08:30 UTC

    In scalar context such as supplied by index, a successfully matching regex will return 1, which will be stringized to '1' for the substring for which to search:

    >perl -wMstrict -le "my $str = 'abc1def'; $_ = 'xyz'; ;; print 'index: ', index $str, /(\w+)/; print qq{captured: '$1'}; " index: 3 captured: 'xyz'

    An unsuccessful regex match returns the empty string in scalar context.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-25 20:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found