String() command in addition to Space() command
String() command in addition to Space() command
Space(n) allows you to create a string of n spaces. How about a String(n,x) command to create as string of whatever X is, which would usually be a character code, but might also be a character constant, or it might be a string of one or more characters to be returned n times.
has-been wanna-be (You may not agree with what I say, but it will make you think).
Re: String() command in addition to Space() command
I'd like this too -- I needed it just the other day, actually. 

Cleaver Feature
That is cute. Just use a$=LSet("".100."*") and you get a line of 100 astericks. Note your example was not quite complete, and the use of
single quotes to surround the "*" character was invalid. I am sure you
know better, but it might mislead someone else. It also works with RSet() as well. I will have to remember that. Still, as String() command would be more obvious, consistent with soem other BASICs, and have more flexability.
I personally would not care to see the abitlity to perform a$*2 as a wqy to couble a string, since a might have been defined as a.s, and a*2 would not be obvious as a string doubling function, but rather look like a math operation.
single quotes to surround the "*" character was invalid. I am sure you
know better, but it might mislead someone else. It also works with RSet() as well. I will have to remember that. Still, as String() command would be more obvious, consistent with soem other BASICs, and have more flexability.
I personally would not care to see the abitlity to perform a$*2 as a wqy to couble a string, since a might have been defined as a.s, and a*2 would not be obvious as a string doubling function, but rather look like a math operation.
has-been wanna-be (You may not agree with what I say, but it will make you think).