Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Split a string to remove quotes and parentheses

by vladb (Vicar)
on Feb 20, 2006 at 16:55 UTC ( [id://531461]=note: print w/replies, xml ) Need Help??


in reply to Split a string to remove quotes and parentheses

You can try perl search/replace regexp:
$s = '("test123")'; $s =~ s/(\("|"\))//g; print "$s\n";
Will print:
test123


_____________________
"We've all heard that a million monkeys banging on a million typewriters will eventually reproduce
the entire works of Shakespeare. Now, thanks to the Internet, we know this is not true."

Robert Wilensky, University of California

Replies are listed 'Best First'.
Re^2: Split a string to remove quotes and parentheses
by perl_99_monk (Novice) on Feb 20, 2006 at 17:11 UTC
    Thank you so much... It worked

Log In?
Username:
Password:

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

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

    No recent polls found