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

You are not logged in

Powered by Interchange version 5.7.0

colons_to_null

Replace double colons "::" with an ASCII NUL ("\0") character.

Example

filter colons_to_null]Foo::bar::baz[/filter]

Results in:

Foo\0bar\0baz

Also see the null_to_colons filter.

Source code

sub {
    my $val = shift;

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

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