Str Commands
......................................................................................................................
This Page contains Sourcecode developed by me and for you to use freely.
It would be nice to get an email telling me that you are using this code.
All code is free to use as they are, with no warranties.
The str commands will help you make string handling more efficient, The source includes the source for each function in a .inc file with a .bas file that shows how to use the functions and also a .lib file with example files how to use the .lib file instead and the source for the .lib file.
The only thing to that I had problem with when building .lib files was that all external declares must be inside the functions that uses them.


StrRIGHTBACK
......................................................................................................................
Return everyting right of the "findtext" searching for the string from the end on the "OrgText"
Function STRRIGHTBACK (OrgText as string,findtext as string) as string
StrRIGHT
......................................................................................................................
Return everyting right of the "findtext", searching the "OrgText" from left to right.
Function STRRIGHT (OrgText as string,text as string) as string
StrLEFTBACK
......................................................................................................................
Return everyting left of the "findtext" searching for the string from the end on the "OrgText"
Function STRLEFTBACK (OrgText as string,findtext as string) as string
StrLEFT
......................................................................................................................
Return everyting left of the "findtext", searching the "OrgText" from left to right.
Function STRLEFT (OrgText as string,FindText as string) as string
CharToOEM
......................................................................................................................
Convert a string to a OEM string, this is to get international signs to work with in a commandline
Function STROEM(OrgText as string) as string