Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Need algorithm for cleaning check numbers
Message
De
12/04/2000 20:57:21
Jim Crowder
Progressive Group Alliance
Boise, Idaho, États-Unis
 
 
À
12/04/2000 20:46:33
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00359011
Message ID:
00359056
Vues:
13
How about :
*--- make sure we have digits only for the Phone Number
IF !EMPTY(nCharPhone)
FOR i = 1 TO nCharPhone
IF !ISDIGIT(SUBSTR(cPhone,i,1))
MESSAGEBOX ("Phone number should contain the numbers 0-9 only!")
RETURN
ENDIF
NEXT
ENDIF
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform