Reverse string getting issue

Hi all,
I have a requirement to reverse a string

Example : Test — output I need as tseT

But getting an error when I use variablename.reverse function

Can anyone suggest me the expression

Hi @Prapanjan_B

Try this out

String.Join(“”,yourvar.Reverse)

An alternative expression as well

1 Like

@Prapanjan_B

There is a built in function as well

StrReverse("Test")

image

cheers

1 Like

Thanks @nikhil.girish @Anil_G

1 Like

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