Hi ,
Can Any one help me in attaining a solution in validating a data , I need to validate only a integer or decimal and invalidate a string of alpha numeric
Example
my @numbers = (0, 3.14, 5 "any strings can come here 234 ");
In my case the first three are valid so i need to invalidate the last string value
I need a solution other than using Data::Types .
Thanks & Regards