Skip to Content
0
Former Member
Apr 16, 2014 at 01:38 PM

How to put spaces between lines while using append

109 Views

Hi all,

I have written the following piece of code

i_objtxt_temp = 'Hello all,'.

APPEND i_objtxt_temp TO i_objtxt .

i_objtxt_temp = 'How are you.'.

APPEND i_objtxt_temp TO i_objtxt .

The output to which is coming like this

Hello all,

How are you.

Now I need a space between these two lines. Please suggest how can I do that.

Points will be given.

Thanks in advance.