http://www.perlmonks.org?node_id=244695


in reply to Simple regex needed

m/(\d)/

SCNR. Read perlre or define things more descriptively ;)

--
http://fruiture.de

Replies are listed 'Best First'.
Re: Re: Simple regex needed
by pg (Canon) on Mar 20, 2003 at 20:24 UTC
    He didn't specify whether the number is single digit, so this would be more safe:
    /(\d+)/
      I also forgot to mention that there are other numbers in the file.

      So I need to look through the file and key my hash by using the number from the format I posted earlier.