Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Remove Double Quotes from XML Output

by toolic (Bishop)
on Nov 07, 2016 at 13:31 UTC ( [id://1175432]=note: print w/replies, xml ) Need Help??


in reply to Remove Double Quotes from XML Output

The following removes all double quotes from the string stored in the $column1 variable using the substitution operator:
($column1,$column2,) = split(','); $column1 =~ s/"//g;

If that does not work for you, then you should show several examples of strings you are working with.

Replies are listed 'Best First'.
Re^2: Remove Double Quotes from XML Output
by JakeBloomfield (Initiate) on Nov 07, 2016 at 13:36 UTC
    That worked perfectly - thank you very much.

Log In?
Username:
Password:

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

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

    No recent polls found