in reply to Re^4: Adding text file data to hashes and array
in thread Adding text file data to hashes and array
How to get rid of the single quotes for the values 30,40,50,60
Data::Dumper is a debugging tool, I would not use it to get consistently formatted output. Because Perl transparently converts between strings and numbers, 30 and "30" are practically the same thing, and so modules such as Data::Dumper have to more or less "guess" in which format to output such values. This kind of question actually comes up often when serializing Perl data structures, and usually the solution ends up being some custom code (one example: Cpanel::JSON::XS::Type).
So I guess the question is, why do you need the output in this format, and could you give a longer specification of the expected output format?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Adding text file data to hashes and array
by Tigor (Novice) on Feb 15, 2019 at 09:47 UTC | |
by haukex (Archbishop) on Feb 15, 2019 at 10:10 UTC | |
by Tigor (Novice) on Feb 15, 2019 at 11:10 UTC | |
by hippo (Archbishop) on Feb 15, 2019 at 11:58 UTC | |
by Anonymous Monk on Feb 15, 2019 at 12:05 UTC |