NAME Data::Clean::ToStringyNumber - Convert non-stringy numbers in data to stringy numbers VERSION This document describes version 0.050 of Data::Clean::ToStringyNumber (from Perl distribution Data-Clean-ToStringyNumber), released on 2019-09-01. SYNOPSIS use Data::Clean::ToStringyNumber; my $cleanser = Data::Clean::ToStringyNumber->get_cleanser; my $data = ["a", 1, "1.2", []]; my $cleaned = $cleanser->clean_in_place($data); # -> ["a", "1", "1.2", []] DESCRIPTION This class can convert non-stringy numbers in your data to stringy ones. METHODS CLASS->get_cleanser => $obj Return a singleton instance. $obj->clean_in_place($data) => $cleaned Clean $data. Modify data in-place. $obj->clone_and_clean($data) => $cleaned Clean $data. Clone $data first. HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO Data::Clean::ToNonStringyNumber AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2019, 2016, 2014, 2013 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.