For more information... RTFM!
NAVIGATION
ACCOUNT LOGIN

You are not logged in

Powered by Interchange version 5.7.0

tabbed

Replaces every newline ("\n") character, or MS Windows-style CRLF ("\r\n") sequence, with a tab ("\t").

Example

[filter tabbed]
Kevin
Walsh
Was
Here
[/filter]

Results in:

Kevin   Walsh   Was     Here

Source code

sub {
    my $val = shift;

    $val =~ s/\r?\n/\t/g;
    return $val;
}

Category:  Filters
Last modified by: Kevin Walsh
Modification date: Thursday 22 February 2007 at 5:54 PM (EST)
Home  |  Legal nonsense  |  Privacy policy  |  Contact us