in reply to Re: Re: Regexp for alphabetical order match within the string
in thread Regexp for alphabetical order match within the string
sub is_alphabetical { my @c = split //, shift; $c[$_] ge $c[$_-1] or return 0 for 1..$#c; return 1; }
tlhf
(Everyone forgets about ge and le ^_^)
|
|---|