For more information... RTFM!
NAVIGATION
PAGES THAT LINK HERE
ACCOUNT LOGIN

You are not logged in

Powered by Interchange version 5.7.0

space_to_null

Replace space (" ") characters with ASCII NUL ("\0") characters.

Also see the null_to_space filter.

Example

[filter space_to_null]Kevin Walsh[/filter]

Results in:

Kevin\0Walsh

Source code

sub {
    my $val = shift;

    $val =~ s/\s+/\0/g;
    return $val;
}

Category:  Filters
Last modified by: Kevin Walsh
Modification date: Monday 26 February 2007 at 12:01 PM (EST)
Home  |  Legal nonsense  |  Privacy policy  |  Contact us