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

Re: Matching a pattern which resides within round brackets

by toolic (Bishop)
on Nov 26, 2008 at 22:13 UTC ( [id://726242]=note: print w/replies, xml ) Need Help??


in reply to Matching a pattern which resides within round brackets

You should be more specific when you say "this doesn't seem to work". Please show your expected output and your actual output, if any. If you are trying to capture the parentheses, then you just need to move your backslashes a little bit:
use strict; use warnings; use Data::Dumper; my $var = "(this is a good idea!), No it's not"; if ( $var =~ /^(\(.*\)),(.*)$/ ) { my @args = ($1, $2); print Dumper(\@args); } __END__ $VAR1 = [ '(this is a good idea!)', ' No it\'s not' ];

Also, it would be easier to read your post if you did not use "pre" tags.

Log In?
Username:
Password:

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

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

    No recent polls found