Solved! Go to Solution.
@Jordken Change the expression to read as follows:
regex_replace([_CurrentField_],"[^\xA,\xD,\x20-\x7e]+",'')
[_CurrentField_] being whatever your field name is if you are using the formula tool and not the multi field tool
Is there a way to do this but return if the field had one of the untranslatable characters? I'm trying to identify them the fields and flag them with a 1 if they have a bad character.
MIN(Regex_Countmatches([Garbage Data],"^[ -~]"),1)
That might help.
Adding another solution to the conversation.
Indeed elegant and something I will likely be using regularly to remove 'junk' and mystery hidden characters from data coming from different platforms. Thank you!
You deserve all the EXTRA COOL points Todd!