in reply to Re: XML parsing
in thread XML parsing
This would add spaces into the data. If you do not want the data split into lines, do not split it. It's much better to assign all the data into a single scalar right away than to split it and then merge it back.
my $data = qx[$cmd];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: XML parsing
by mscharrer (Hermit) on Sep 17, 2008 at 15:23 UTC | |
by Jenda (Abbot) on Sep 17, 2008 at 20:43 UTC | |
by mscharrer (Hermit) on Sep 17, 2008 at 23:26 UTC |