Hello @The_Automation_king
This would help. in assign activity, assign your string to : String.Join(String.Empty,yourString.Split("-"c)(1).Reverse())+"-"+yourString.Split("-"c)(0)
The results are shown below:
[Before]
[After]
Thank you
Cheers Answer from MasterOfLogic on forum.uipath.com
Reddit
reddit.com โบ r/godot โบ how can i reverse a string?
r/godot on Reddit: how can I reverse a String?
November 17, 2022 -
please help
Top answer 1 of 5
3
I don't think any Pool*Arrays are needed. At least this is faster: func reverse_string(s: String) -> String: var reversed = "" for i in range(s.length() - 1, -1, -1): reversed += s[i] return reversed
2 of 5
2
The String class might have some helpful function to do that, did you search the String documentation via Godot?
Reverse a string without using reverse()
Hi guys. I want to reverse a string without using a reverse function. We can convert the string into CharArray but what should we do post that? Thanks for the help in advance. More on forum.uipath.com
Reverse of a String - Storage & SAN - Spiceworks Community
Hi i have a requirement of reversing a string column in my data. for example if my data is 101,krishna 102,surya 103,asha I want output as 101,anhsirk 102,ayrus 103,ahsa I tried the below logic but it still throwing an error. Plz correct my with my code /Reformat operation/ out::reformat(in) ... More on community.spiceworks.com
Why does [::1] reverse a string in Python? : learnprogramming
Challenge: Reverse a string in place
I think the trick to this is using XOR to switch characters in the string without having to use temporary variables to store them. That is, one can switch two variables x and y by using: x = x^y; y = x^y; x = x^y; C++: #include int main(){ char string[]="String to reverse"; std::cout << string << std::endl; int i; int stringsize= sizeof(string) - 1; for(i=0;i More on reddit.com
Videos
04:20
Python Interview Prep | Alternate Ways to Reverse a String using ...
04:08
Reverse A String | C Programming Example - YouTube
09:03
Reverse String - 3 Ways - Leetcode 344 - Python - YouTube
05:19
How to Reverse a String in JavaScript | Easy Step-by-Step Tutorial ...
19:25
YouTube
DigitalOcean
digitalocean.com โบ community โบ tutorials โบ reverse-string-c-plus-plus
How to Reverse a String in C++: A Guide with Code Examples | DigitalOcean
April 21, 2025 - Now let us see how we can perform this reverse operation on C++ strings using various techniques. The built-in reverse function reverse() in C++ directly reverses a string.
GeeksforGeeks
geeksforgeeks.org โบ java โบ reverse-a-string-in-java
Reverse a String in Java - GeeksforGeeks
Explanation: Characters are stored in a list and reversed using Collections.reverse(). This approach is helpful when youโre already working with Java collections. StringBuffer is similar to StringBuilder but thread-safe.
Published ย October 14, 2025
CodeChef
codechef.com โบ practice โบ course โบ strings โบ STRINGS โบ problems โบ PALINDRCHECK
Reverse Words in a String Practice Problem in Strings
Test your knowledge with our Reverse Words in a String practice problem. Dive into the world of strings challenges at CodeChef.
Clayton Errington
claytonerrington.com โบ blog โบ reverse-reverse
Reverse, esreveR
March 5, 2025 - $String = "This is a test string" -join $String[-1..-($String.Length)] gnirts tset a si sihT ยท It is the fun part of working these problems is the many ways to solve the problem. Each has itโs own benefit and can be used in other processes like finding if a word is a Palindrome. Have fun with reversing things, but donโt do everything backwards.
Interviewing.io
interviewing.io โบ questions โบ reverse-string
How to Reverse a String [Interview Question + Solution]
September 13, 2018 - We can loop through each character of the original string and build the reversed string iteratively. We start with an empty string and append the characters to it as we loop across the original string. Please note that we are appending the characters to the beginning of the string.
UiPath Community
forum.uipath.com โบ learning hub
Reverse a string without using reverse() - Learning Hub - UiPath Community Forum
April 30, 2020 - Hi guys. I want to reverse a string without using a reverse function. We can convert the string into CharArray but what should we do post that? Thanks for the help in advance.
takeuforward
takeuforward.org โบ data-structure โบ reverse-a-string
Reverse a String - Tutorial
Search for a command to run
Spiceworks
community.spiceworks.com โบ hardware & infrastructure โบ storage & san
Reverse of a String - Storage & SAN - Spiceworks Community
April 10, 2012 - Hi i have a requirement of reversing a string column in my data. for example if my data is 101,krishna 102,surya 103,asha I want output as 101,anhsirk 102,ayrus 103,ahsa I tried the below logic but it still throwing an error. Plz correct my with my code /Reformat operation/ out::reformat(in) = begin let string(10) str = in.ename; let string(10) z; let string(10) ch; let int a; let decimal(10) l = string_length(in.ename); let int i =0; a=l; for(i,i
NI
ni.com โบ docs โบ en-US โบ bundle โบ labview-api-ref โบ page โบ functions โบ reverse-string.html
Reverse String Function
Modular Data Acquisition ยท Distributed Measurement and Control
GeeksforGeeks
geeksforgeeks.org โบ dsa โบ reverse-a-string
Reverse a String โ Complete Tutorial - GeeksforGeeks
After each swap, increment the left pointer and decrement the right pointer to move towards the center of the string. This will swap all the characters in the first half with their corresponding character in the second half. ... // C++ program to reverse a string using two pointers #include <iostream> using namespace std; string reverseString(string &s) { int left = 0, right = s.length() - 1; // Swap characters from both ends till we reach // the middle of the string while (left < right) { swap(s[left], s[right]); left++; right--; } return s; } int main() { string s = "abdcfe"; cout << reverseString(s); return 0; }
Published ย 5 days ago
LeetCode
leetcode.com โบ problems โบ reverse-words-in-a-string
Reverse Words in a String - LeetCode
Can you solve this real interview question? Reverse Words in a String - Given an input string s, reverse the order of the words. A word is defined as a sequence of non-space characters.