Hi
I am trying to remove all possible kinds of special characters from a string.
eg. Input = “ABC-DEF@PQR” Output = “ABC DEF PQR”
Since we don’t have .ReplaceAll function here , I’m slightly doubtful on how to proceed with it.
I tried using Matches activity with a suitable regex but I think my approach maybe wrong.