Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Opps...special charactersa
Message
 
À
15/08/2000 14:50:57
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00405141
Message ID:
00405263
Vues:
16
>Sorry bout the previous message....
>
>I'm looking for those special characters like @#$%^&* , etc in fields in a table. The field's format is 999-9999-99999

Even easier:
lcText = strtran(alltrim(fieldname.value),'-','')   && strip out the dashes
for li = 1 to len(lcText)
   if not isdigit(substr(lcText,li,1))
      * Do something
   endif
endfor
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform