Noob question - How do I print a message using a mix of strings and variables?

I’m trying to do something like this : "Today is " +date ", it is a " +day

But it gives me a “End of expression” error message - how do I fix this?

Hello @NCheah - and welcome to the UiPath Community Forums! :partying_face:

I think you are missing a “+” from your line.

Try this:
"Today is " + date + ", it is a " +day

Edit: Assuming “date” is a variable.

1 Like

Thanks! That’s what it was!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.