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 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
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
Regards
Gokul
Thank you @Gokul001 it is working
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.