Quote:
|
Originally Posted by coldDeath
I have no experiance in BASIC, so please explain what the mid$() function does, then i can help you out.
|
SubStr$ = MID$(MainStr$, Start% [, Length%])
returns a substring of a string
SubStr$ = MID$("abcdefg",3,4)
' Result: SubStr$ will equal "cdef"
SubStr$ = MID$("abcdefg",2)
' Result: SubStr$ will equal "bcdefg"