Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: How to find which comes first: '"', '(', or ')'?

by merlyn (Sage)
on Oct 17, 2000 at 07:51 UTC ( [id://37091]=note: print w/replies, xml ) Need Help??


in reply to How to find which comes first: ' " ', '(', or ')'?

my ($first) = $string =~ /(["()])/;
<Editor's Note>
From perlop:
If the `/g' option is not used, `m//' in list context returns a list consisting of the subexpressions matched by the parentheses in the pattern, i.e., (`$1', `$2', `$3'...).

Examples:
if ( ($F1, $F2, $Etc) = ($foo =~ /^(\S+)\s+(\S+)\s*(.*)/) )

So, by parenthesizing the character class containing the characters you want to find, the regex will return that character when matched.

The parentheses around the left-hand-side variable (here, $first) are required, to put the expression in list context. In scalar context, a regex will only return true or false.
</Editor's Note>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (9)
As of 2024-04-23 18:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found