in reply to Re: Matching numbers by regex.
in thread Matching numbers by regex.
In the above code (and in the other replies in the thread),
[^\d]*
may be represented with
\D*
and will be more efficient as well, since it avoids calls to utf8::IsDigit internally.
• another intruder with the mooring in the heart of the Perl
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Matching numbers by regex. (remember \D)
by GrandFather (Saint) on Apr 19, 2006 at 10:34 UTC |