Indent::String - Class for text indenting.
use Indent::String; my $obj = Indent::String->new(%parameters); my $string = $obj->indent('text text text'); my @data = $obj->indent('text text text');
new
my $obj = Indent::String->new(%parameters);
Constructor.
Returns instance of object.
line_size
Sets indent line size value. Default value is 79.
next_indent
Sets output separator between indented datas for string context. Default value is "\t" (tabelator).
output_separator
Output separator between data in scalar context. Default value is "\n" (new line).
indent
my $string = $obj->indent('text text text');
or
my @data = $obj->indent('text text text');
Indent text by words to line_size block size.
C<$act_indent> - Actual indent string. Will be in each output string. C<$non_indent> - Is flag for non indenting. Default is 0.
Returns string or array of data to print.
new(): From Class::Utils::set_params(): Unknown parameter '%s'. From Indent::Utils::line_size_check(): 'line_size' parameter must be a positive number. line_size => %s
use strict; use warnings; use Indent::String; # Object. my $i = Indent::String->new( 'line_size' => 20, ); # Indent. print $i->indent(join(' ', ('text') x 7))."\n"; # Output: # text text text text # <--tab->text text text
Class::Utils, Indent::Utils, Readonly.
Class for indent handling.
Class for block indenting.
Class for data indenting.
Utilities for Indent classes.
Class for word indenting.
https://github.com/michal-josef-spacek/Indent
Michal Josef Špaček mailto:skim@cpan.org
http://skim.cz
© 2005-2021 Michal Josef Špaček
BSD 2-Clause License
0.08
To install Indent, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Indent
CPAN shell
perl -MCPAN -e shell install Indent
For more information on module installation, please visit the detailed CPAN module installation guide.