For more information... RTFM!
NAVIGATION
ACCOUNT LOGIN

You are not logged in

Powered by Interchange version 5.7.0

word

Only returns word characters.  Word characters usually consist of alphanumerics and underscores ("_"), but locales will apply if collation is properly set.

Example

[filter word]Kevin! Walsh![/filter]

Results in:

KevinWalsh

Source code

sub {
    my $val = shift;
    $val =~ s/\W+//g;
    return $val;
}

Category:  Filters
Last modified by: Kevin Walsh
Modification date: Sunday 10 February 2008 at 9:22 PM (EST)
Home  |  Legal nonsense  |  Privacy policy  |  Contact us