Could you elaborate on how you did the trim? Because if you use the Parse with action and use a microflow those trims should just work. You could debug this when you set a breakpoint on that microflow while doing imports.
Regards,
Ronald
Hi Guru,
You can try using replaceAll() function.
ex., replaceAll($object/value, ‘ ‘,’’)
The trim() function should remove whitespace from the start and end of the string.
If you have found it’s not removed a character, it could be that what you are seeing as space isn’t a standard space character.
There is a list of “invisible” characters and it could be one of these has been used.
https://invisible-characters.com/
One way to check for this is to use a hex editor / viewer and see what the character code before TEST is. It should be “20” in hex. If you don’t have a hex viewer, you can download a free plugin for Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=ms-vscode.hexeditor
If it is an “invisible” character, you would need to use a regular expression in the replaceAll function to remove it.
Hope this helps.