102
Views
5
Comments
Solved
How to reverse all string
Question
Application Type
Reactive


Hello everyone,

I need assistance with reversing a string in an input field within Outsystems,  is a low-code platform. The desired output should be "platform code low a is Outsystems". I've gone through multiple resources regarding string splitting, but none provide a comprehensive solution. Can anyone provide some guidance? 
Thanks.

UserImage.jpg
Himanshu dwivedi

Hi Wasim

Thanks for your help

2023-05-23 04-55-55
Wasimkhan Syed Abuthahir
2020-11-25 10-45-32
Mostafa Othman
Champion

Hello,

You can use String_Split action first to split you string using " " (space) as your delimiter which will return list of text each item has one word in your case will be like (platform, code, low, a, is, OutSystems)

After that I can suggest to use a local variable as list of text and start using ListInsert action inside a Foreach of returned list of String_Split and always use position into insert as 0 always.

Last step is to use String_Join action and input parameters will be your local text list and delimiter will be " " (space)

UserImage.jpg
Himanshu dwivedi

Hi Wasim

Thanks for your help

2023-05-23 04-55-55
Wasimkhan Syed Abuthahir
2025-09-21 06-51-05
Mohd Anees Mansoori

Hello Himanshu,

Just implemented what @Mostafa Othman suggested and it worked.

Please refer to the link and oml.

Demo Screen Link

Open 'TextReverse' screen in the attached oml.

Hope that helps.

Regards,

Anees

ForumDemo.oml
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.