On Wed, Mar 3, 2010 at 4:17 AM, Dr.Ruud <[email protected]<rvtol%[email protected]> > wrote:
> raphael() wrote: > > ( my $ip ) = $last_page =~ m/[\d.]+/g >> > > The \d matches 200+ codepoints, so if you want to match only 0-9, then use > [0-9.]. > > -- > Ruud > > > -- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > http://learn.perl.org/ > > > Thanks for the advice. [0-9.] it is.
