Hello good day,
It seems that the LoadCSV2RecordList is giving me "?" instead of "ñ". Is there something I need to tweak or adjust to get my desired output?
Thank you and best regards,
Joshua
Hi Joshua
You'd better confirm the encode of you CSV file.
It seems it is not utf-8. maybe it is iso-8859-1 or something else.
As Pedro said, you can specify it via Encode parameter.
Following is the Encode you can specify
https://docs.microsoft.com/en-us/dotnet/api/system.text.encodinginfo.getencoding?view=netframework-4.8
Regards
Wei
Hi Joshua,
Have you verified the encoding type of your file (ANSI, UTF-8, ...)?
If your encoding type is different of the Default Value of the configuration (UTF-8), this kind of problem may occur.
You can change this value in the configuration structure received by the action. Or change the encoding type directly in your file.
Thank you for your quick response. I've applied the string "iso-8859-1" the the Encode Parameter.
God bless!