If you are testing a string with is_numeric(), the string must not contain
*any* non-numeric data. If it does, is_numeric() will return
false.
For example:
is_numeric ("1.21E-100");
// Returns true
is_numeric ("19 Nov 00"); // Returns
false