Acme-Fy-Utils Version 0.01

Text::Fy::Utils - Some text based utility functions

SYNOPSIS

    use Text::Fy::Utils qw(set_amode asciify commify);

    my $text =
      "\x{041}\x{042}\x{043} => ". # A B C (ASCII)
      "\x{08a}\x{08c}\x{08e} => ". #    (Windows)
      "\x{091}\x{092}\x{093} => ". #    (Windows)
      "\x{0a1}\x{0a2}\x{0bf} => ". #    (ISO)
      "\x{0bc}\x{0bd}\x{0be} => ". #    (ISO)
      "\x{0c6}\x{0c7}\x{0c8} => ". #    (ISO)
      "\x{172}\x{173}\x{174} => ". # U U W (Unicode)
      "\x{388}\x{389}\x{38a} => ". # E H I (Unicode)
      "\x{3b1}\x{3b2}\x{3b3} => "; # A B C (Unicode - Greek)

    my $asc1 = asciify($text, [ 'asc' ]);
    my $asc2 = asciify($text, [ 'asc', 'win' ]);
    my $asc3 = asciify($text, [ 'brutal' ]);
    my $asc4 = asciify($text, [ 'brutal', 'win' ]);
    my $asc5 = asciify($text, [ 'iso' ]);
    my $asc6 = asciify($text, [ 'iso', 'win' ]);

    set_amode([ 'brutal', 'win' ]);
    my $asc7 = asciify($text);

    my $out1 = commify('12345678.1234');
    my $out2 = commify('12345678.1234', '~');

INSTALLATION

    To install this module, run the following commands:

	perl Makefile.PL
	make
	make test
	make install

SUPPORT AND DOCUMENTATION

    After installing, you can find documentation for this module with the
    perldoc command.

    perldoc Text::Fy::Utils

You can also look for information at:

    RT, CPAN's request tracker
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Text-Fy-Utils

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/Text-Fy-Utils

    CPAN Ratings
        http://cpanratings.perl.org/d/Text-Fy-Utils

    Search CPAN
        http://search.cpan.org/dist/Text-Fy-Utils/


AUTHOR

    Klaus Eichner <klaus03@gmail.com>

COPYRIGHT AND LICENSE

    Copyright (C) 2014 by Klaus Eichner

    All rights reserved. This program is free software; you can redistribute
    it and/or modify it under the terms of the artistic license 2.0,
    see http://www.opensource.org/licenses/artistic-license-2.0.php
