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)
Code: Select all
string$=Right(string$,len(string$)-int)
Code: Select all
string$=Left(string$,len(string$)-int)
OrDoubleDutch wrote:This would really be handy:
string$=ClipLeft(string$,int=1) would cut 'int' characters from the left of string$
Effectively:Code: Select all
string$=Right(string$,len(string$)-int)
Code: Select all
string$ = Mid(string$, int+1)