Get string in Reverse

Hi all, i have a string i want that to be get from reverse.

Ex : Robotic process automation

Sol : Automation process Robotic

Can anyone help me with the solution

Hi @Learner007

Try this expresion

String.Join(" “,Split(“Robotic process automation”,” ").Reverse)

Regards
Gokul

5 Likes

Hi @Learner007

Reverse is something like this
example : Hello World

Reverse of it is : dlroW olleh

i feel u need swap here

no direct function available
we should go with join , split function

Here is the screen shot
image

Regards
Gokul

Thank you @Gokul001 it is working

1 Like

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