Leaderboard

True Basic

Velcro

Senior Member
Messages
299
Does anyone on this board write in True Basic? Becasue I've been lumbered with writing some code and there a couple of functions I don't know how to do. Despite my best efforts I cannot find out how to concatenate or truncate strings. So if anyone knows how to do this could you help me please.
 
I don't know anything about True Basic but I did a Google search and found a web site.  Here are a list of the string functions:

Function          Result
LCASE$(x$)      Change letters to lowercase
UCASE$(x$)      Change letters to uppercase
LTRIM$(x$)        Remove leading blanks
RTRIM$(x$)        Remove trailing blanks
TRIM$(x$)          Remove leading & trailing blanks
REPEAT$(x$,n)  x$ repeated n times

That came from this PDF: http://www.truebasic.com/downloads/TB_Commands.pdf
Which was on this page: http://www.truebasic.com/free_and_demos

Not sure if that helps or not.

~Ty
 
Back
Top