How to reverse a string in Mendix Microflows ?

0
Note : Not with java action , Only via Microflow
asked
1 answers
1

Take a look at the string functions: https://docs.mendix.com/refguide/string-function-calls/

You can use the length() function to determine the length of a string and the substring() function to get the characters from certain positions.

 

Or check out this post with a more detailed answer:

https://forum.mendix.com/link/space/studio-pro/questions/119385

answered