10-31-2006 11:43 AM
10-31-2006 12:06 PM
The standard C library function int isalnum(int c) will do the trick.
Menchar
11-01-2006 09:45 AM
Hi Menchar,
Thanks..that was exactly what I was looking for. Now that I have it...I can see it in my book....
I understand it is part of the standard library, but where do you find all the functions of the standard library?
Another thing I'm looking for right now is how to convert Hex presentation to dec. Is there a function for it in the standard library or, one must write a function to do it?
Thanks
Rafi
11-01-2006 11:09 AM
Rafi,
What do you mean by hex presentation? If you're talking output and are using printf/sprintf statements, then you can use the %i format modifier instead of %x.
If you are talking about in a CVI GUI, then double click on the field on the UIR panel. Click the "format and precision" button and then change the "display format" field from hex to decimal.
If these don't solve it, give some more idea about what it is you meant.