The getCommand$ function works well! Parses 10 * (10 - 1) correctly as well as "abc def"
Kinda lengthy though however, using the following works!
It parses spaces and symbols quite nicely which is what I wanted it to do...
@mdijkens: thanks for your work!
Kinda lengthy though however, using the following works!
Code: (Select All)
Rem get command$
Rem $Dynamic
DefLng A-Z
x$ = getCommand$(-1)
v = Int(Val(x$))
x$ = ""
For z = 1 To v
x$ = x$ + getCommand$(z)
Next
Print x$
End
It parses spaces and symbols quite nicely which is what I wanted it to do...
@mdijkens: thanks for your work!