QB64.org Forum
Active Forums => QB64 Discussion => Topic started by: MLambert on March 01, 2020, 07:48:22 am
-
Hi,
I have drawn a blank.
I have some very large lines that I want to break down into easy readable lines of code.
I have 3 text lines
A$ = "ABCDEFGHIJKL"
I want to break up these lines into 3 lines of continuation text
A$ = "ABCD_
,EFGH_
,IJKL"
I get an error on this and I have tried many combinations. Just can't get it right.
Pls someone point me in the right direction.
Thks,
Mike
-
Can't break a string in half like that. Try like this:
A$ = "ABCD" + _
"EFGH" + _
"IJKL"
-
Many Thanks Fellippe ... you passed the test.
Mike