Forum Discussion
jfpelletier
2 years agoContributor
Hello again koryknick,
I think that I found the root cause of my issue. I was trying to download the results from the Preview in the snap, so I was probably just getting a partial file. When I go to the Manager I can see the whole file, and when I download it from there, I'm getting a valid Word document!
Thanks a lot for your help and advices, I think we can close this ticket now.
Kind regards,
JF
Hi @vincenr
Good day, this are extended characters/ascii code which maybe be viewed in excel or other app as special character
So, what do you want to do with this characters?
Here are some options that you can do (1) replace the extended characters with the regular ones or (2) just remove all those characters
$the_text_description.replace(/”|“|‘|’|–|—/g, m=> match m { '”'=> '"', '“'=> '"', "‘"=> "'", "’"=> "'", "—"=> "-", "–"=> "-" }) or you can also totally removed those characters $the_text_description.replace(/”|“|‘|’|–|—/g, '')
Thanks,
MM