Determining the number of digits

Last Updated : Sep 08, 2012 |

To determine if the number of digits in variable A is 6 digits, use the following example.


1. set B = A MOD10 6 
2. goto step 8 if B = # [if it branches to 8, A does not have 6 digits]
3. ...[else A does have 6 digits]