It looks like you're new here. Sign in or register to get started.
IsNumeric := EVALUATE(TempInt, YourNAVField[Position]);
test := 'abcd12fs451af44'; newtest := DELCHR(test,'=',DELCHR(test,'=','1|2|3|4|5|6|7|8|9|0'));
mohana_cse06 wrote: you can trytest := 'abcd12fs451af44'; newtest := DELCHR(test,'=',DELCHR(test,'=','1|2|3|4|5|6|7|8|9|0'));
test := 'a|bc|d12|fs451af44'; newtest := DELCHR(test,'=',DELCHR(test,'=','1234567890'));
kriki wrote: mohana_cse06 wrote: you can trytest := 'abcd12fs451af44'; newtest := DELCHR(test,'=',DELCHR(test,'=','1|2|3|4|5|6|7|8|9|0')); Don't use the | in the string. It means that you also delete that character in the inner DELCHR and thus NOT in the outer DELCHR. Use this: test := 'a|bc|d12|fs451af44'; newtest := DELCHR(test,'=',DELCHR(test,'=','1234567890'));
Comments
If you want to know if the whole field is numeric then just leave away the [Position]
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav
Use this:
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
Thanks for correcting :thumbsup:
-Mohana
http://mohana-dynamicsnav.blogspot.in/
https://www.facebook.com/MohanaDynamicsNav