Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Clear control codes from string
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Clear control codes from string
Divers
Thread ID:
00860937
Message ID:
00860937
Vues:
55
An editbox allows my user to enter a sring. The user may enter a control code, like a CRLF, which is not desired in the string.

Right now to clear these codes, my project calls a fuction to loop through the string:
FOR c=1 TO LEN(lcCommand)
IF ASC(SUBSTR(lcCommand,c,1))<32 or ASC(SUBSTR(lcCommand,c,1))>122
   lcCommand=STUFF(lcCommand,c,1," ")
ELSE 
ENDIF 
ENDFOR 
RETURN ALLTRIM(lcCommand)
Is there an inline fuction that would be more appropriate?
Imagination is more important than knowledge
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform