Hi Inger,
thank you for your reply.
Using Tools -> Search for undocumented characters works fine. That is a good solution.
At least I have a solution to convert my texts.
I write all my articles using Word because it is easier. I have a corrector (Antidote) which is not available in Coffeecup. Writing with word allows me to use my texts for different purposes like books.
Anyway, thanks for your help.
I have another question. I am going to open a new discussion.
Thanks for all
Sincerely,
A. Guillen
To extract accented characters from pasted text, you can use Python with regular expressions:
import re
text = "Café, élève, naïve, résumé"
accented_chars = re.findall(r'[\u00C0-\u017F]', text)
print(accented_chars)
For a quicker solution, use online tools to detect accented characters.
import re
text = "Café, élève, naïve, résumé"
accented_chars = re.findall(r'[\u00C0-\u017F]', text)
print(accented_chars)
For a quicker solution, use online tools to detect accented characters.
If this issue not resolve from above. You can contact a Development company Like Red Star Technologies for better solution.
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.