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

You are not logged in

Powered by Interchange version 5.7.0

alpha

Strip all non-alpha characters (anything that's not in the "A-Z" or "a-z" ranges).

Also see the alphanumeric filter.

Example

[filter alpha]** Test 123: Hello World! **[/filter]

Results in:

TestHelloWorld

Source code

sub {
    my $val = shift;

    $val =~ s/[^A-Za-z]+//g;
    return $val;
}

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