dan wrote: > I want to be able to check if a string contains only a number, no letters, > etc. I have this procedure:
Try;
if (!($numess =~ /\D/)) {
which will reject anything containing a non-digit.
Joseph
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
