A string in 2 lines

davidvilla

Member
Hi all,
I have a character variable say mytext. Can I assign a string (a sentence) to this variable, so that when I display this the string will be in multiple lines.

Ex:
mytext = "I want to " + <Something to break this line> + "really break this sentence".
DISPLAY mytext.

Desired Output:
I want to
really break this sentence


How can I do this? I cannot introduce another variable.
 
Alternatively you can add "~n" in the string...

mytext = "I want to~nreally break this sentence".
 
Back
Top