ClipLeft(string,int) and ClipRight(string,int)
Posted: Wed Apr 20, 2011 9:55 am
This would really be handy:
string$=ClipLeft(string$,int=1) would cut 'int' characters from the left of string$
Effectively:
string$=ClipRight(string$,int=1) would cut 'int' characters from the right of string$
Effectively:
string$=ClipLeft(string$,int=1) would cut 'int' characters from the left of string$
Effectively:
Code: Select all
string$=Right(string$,len(string$)-int)
Effectively:
Code: Select all
string$=Left(string$,len(string$)-int)