My requirement is to remove the duplicate values from a rule input of type text. Here is a sample input and output.
Input: Hello hello Hello there there past pastures
Output: Hello there past pastures
Discussion posts and replies are publicly visible
is that an array of string values or a single string?
single string
in any case there is no "simple" method or function to archive that.1.) You need to cut it into pieces (word for word)2.) compare the different values to each other3.) remove the values you don't want to have.Spontanously I would suggest an expression with extract(), search() perhaps cleanwith() Sorry no final solution for that issue on hand. -> docs.appian.com/.../Appian_Functions.html