Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Searching for characters
Message
From
24/01/2003 05:38:10
Erick Miranda
Formata Data Business - Grupo Linx
Contagem, Brazil
 
 
To
24/01/2003 02:10:49
Henry Ravichander
RC Management Systems Inc.
Saskatchewan, Canada
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00744971
Message ID:
00745006
Views:
26
This message has been marked as a message which has helped to the initial question of the thread.
Hi Henry!

If what you want it is to know if all the one letters of a string exist in one another string? Try this:
Local llOk, lnFor
lOk = .T.
mCharacters = Alltrim(mCharacters)
For lnFor = 1 To Len(mCharacters)
   IF Not SubStr(mCharacters, lnFor, 1) $ "ABCDEFGHIJKLMNOPQRSTXYZ"
      mOldID = IncompleteList.ID
      llOk = .F.
   ENDIF
Next
If llOk
   mID = alltrim(SUBSTR(mOldID,3,7))
Endif
Bye!
Erick
Força Sempre!
Strength Always!
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform