cancel
Showing results for 
Search instead for 
Did you mean: 

Checking for numeric or alpha values

Former Member
0 Kudos

Hi,

I can't seem to find a way to find out if a field contains a numeric value. Is there anything within standard mapping that would allow me to do that?

Many thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

you are right that there is no standard function.

But you could use a simple UDF (with parameter a 😞

>int i = 0;

>try {

>i = Integer.parseInt (a);

>} catch (Exception E){

>return "0";

>}

>return "1";

Regards

Patrick

Former Member
0 Kudos

Thanks - it's working.

Answers (0)