How to read greek characters in a .txt file
Afficher commentaires plus anciens
What is the command in order to read greek characters in a .txt file via matlab programming?
My file has 3 columns. The first one has names , the 2nd and 3rd have numbers.
Réponses (1)
Rik
le 10 Déc 2020
0 votes
You can get my readfile function from the FEX. If you are using R2017a or later, you can also get it through the AddOn-manager.
10 commentaires
Ivan Mich
le 13 Déc 2020
Walter Roberson
le 13 Déc 2020
Can you attach the first couple of lines of your .txt file? Including enough to have some greek characters in the example.
I asked to "attach" rather than "post" in case there are special characters that might not be obvious from reading it on screen. For example, tabs.
Walter Roberson
le 13 Déc 2020
Also please indicate which MATLAB release you are using, as there was a relatively recent change that makes a difference.
Rik
le 13 Déc 2020
I'm currently not at a computer, so I can't run code on your file, but the input option 'Delimiter' does not exist for my function. That is why it isn't in the documentation.
Walter Roberson
le 13 Déc 2020
That file is not three columns, it is 28 columns.
T = readtable('test.csv')
handles the sample with no problem
Ivan Mich
le 16 Déc 2020
Rik
le 16 Déc 2020
Your file does not contain any Greek characters. It is an ANSI-encoded file that does contain some special characters (like Ð), but no Greek symbols.
You can use readfile, but if you want to separate the lines along delimiters as well, you will have to parse each line separately (e.g. with the split function).
t=readfile('test.csv');
t=split(t,',');
Ivan Mich
le 16 Déc 2020
Walter Roberson
le 16 Déc 2020
Is it possible that you tried the split() twice ? It should not be able to give that error when the input is a character vector such as the result from readfile(), but it could give that error if the input is the result of a previous split()
Catégories
En savoir plus sur Labels and Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!