I would like to reverse character order in the string e.g. from "Mariusz 123 #$" to "$# 321 zsuiraM". Do you know any FME function or transformer to perform this? I do not know Pyton.
Page 1 / 1
Use the string searcher to get every character as a list element, sort the list by startIndex in reverse order, then concatenate the list
reverse_string.fmw
Or if you did want to use a pythoncaller
@egomm Thank you.