how to jump to a new line in a string
Posted: Tue Jun 14, 2016 3:13 am
by melamel
I created a string and I wrote some words inside it and I want to jump to a new line and write other things. How to jump to a new line inside a string, please ?
Re: how to jump to a new line in a string
Posted: Wed Jun 15, 2016 2:02 am
by johansamuelsson
Hi, use ASCII characters, @chr(13) or @chr(10), i.e.
Code: Select all
%string = "a b c" + @chr(13) + "d e f"
@uiprompt(%string)
See further
http://www.theasciicode.com.ar/extended ... e-255.html
Regards Johan
Re: how to jump to a new line in a string
Posted: Thu Jun 16, 2016 3:19 pm
by melamel
Many thanks for your response Johan!