Discussion:
Alternative to BPUT#
(too old to reply)
Ian
2021-12-28 18:04:54 UTC
Permalink
On Tue, 28 Dec 2021 16:54:41 GMT
Using BPUT#file%,"Some Text" will put it on a new line, so is there a
command for putting it all on one line?
Add a semicolon :-

BPUT#file%,"Some Text ";


BPUT#file%,"Some More Text";


Gives :-

Some Text Some More Text


HTH,
Ian
Ian
2021-12-30 07:44:53 UTC
Permalink
On Wed, 29 Dec 2021 16:31:32 GMT
Post by Ian
On Tue, 28 Dec 2021 16:54:41 GMT
Using BPUT#file%,"Some Text" will put it on a new line, so is
there a command for putting it all on one line?
Add a semicolon :-
BPUT#file%,"Some Text ";
Thanks that appears to do the job, so BPUT# is similar to PRINT
instead of printing to screen BPUT sends the info to a file?
Yes, effectively. Viewing the results will look similar.

Don't use PRINT# to print to file though as they won't achieve what you
want.

Ian

Loading...