For more information... RTFM!
NAVIGATION
ACCOUNT LOGIN

You are not logged in

Powered by Interchange version 5.7.0

backslash

Strip all backslash (\) characters from the text.

Example

[filter backslash]All of the \ characters should \be \\\stripped\\[/filter]

Results in:

All of the  characters should be stripped

Source code

sub {
    my $val = shift;

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

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