It looks like you're new here. Sign in or register to get started.
JAYESH wrote: Hi thankx for the reply Actually i have one no which contain integer and text values i want to check weather that no is integer or not ?? Thank you..
Answers
You can use the evaluate function (see help) and use the return value of that function (yes=ok, no=nok)
hth
Thomas
Actually i have one no which contain integer and text values i want to check weather that no is integer or not ??
Thank you..
Numerical := EVALUATE(integer,Text);
So
IF EVALUATE(Number,TEXT) THEN
//Do Something
ELSE
// Do Something Else
Mobile: +44(0)7854 842801
Email: david.cox@adeptris.com
Twitter: https://twitter.com/Adeptris
Website: http://www.adeptris.com
If yes, then you have to loop through the string and use evaluate for each substring.
Does this match?
Thankx for the reply....