How to pass a multi-line text via a string?

Hi all,

After realizing that, despite how easy and dummy-proof UiPath could be, you still require some understanding of programming language. So decided to purchase a textbook on Python and started studying. So far so good.

Here in my dumb (newbie) question.

In Python,

a = “”"
… A
… B
… C
… “”"

When you print:-

A
B
C

This happens.

How do I achieve this UiPath?

Aw… the life of a newbie.

1 Like

Add environment.newline between your chars.

Sidenote - a. Net language will be easier to transfer knowledge from to Uipath. I’d recommend either vb.net or c#. While Python is a great language it has enough differences from net that you might struggle a bit.

Strtemp = “a”+ Environment.Newline+ “b”+ Environment.Newline+“c”

1 Like

Thanks for that. Truly appreciate your advice.

Thanks mate.