Reverse a string
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-03-18 09:36 PM
3 REPLIES 3
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-03-18 12:04 PM
Hi sudheerr,
Yes it is possible.
see demo,
55
9
1.25
30
-150
60
30
7bba85c2-a3c5-41bb-b3ad-760c11f7a593
-90
60
60
30
-195
-105
150
90
30
-90
60
30
626198cc-31eb-4251-b647-539b70182dc4
240
-150
60
30
text
Blue Prism
120
-90
60
30
number
30
-45
60
30
01424058-e993-4912-ae22-25f13a55a3a8
120
-30
60
30
number
30
60
60
30
d8ed2ce5-2812-43b0-a7a3-026b4c3c9f70
e9508ee3-8800-4e00-8b5b-495b79625bb6
120
15
60
30
number
1
195
15
60
30
number
30
15
60
30
78944d7e-ba51-406d-9b7d-a8f9855bd618
30
315
60
30
150
60
60
30
61392fee-c044-4fdf-a0b8-73cda600651f
240
120
60
30
text
150
120
60
30
75c50b24-8fd0-4b6f-aa7c-5b954934435e
30
120
60
30
78944d7e-ba51-406d-9b7d-a8f9855bd618
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-03-18 09:24 PM
Another approach would be to use a Code stage. Here's an example in VB:
Dim arr() As Char = StringToReverse.ToCharArray()
Array.Reverse(arr)
ReversedString = New String(arr)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
10-03-18 11:21 AM
Thanks for the reply..Mayur & Stewart
