http://qs321.pair.com?node_id=336269


in reply to Re: Re: compare stdin for a number
in thread compare stdin for a number

/\d{5}/ means exactly 5(same as /\d{5,5}/).
/\d{5,}/ means 5 or more.

- Tom