How can I read a file in .dat format, which has three commas in each row and only the second is a separator? The others are decimal separators.
Maybe I do not explain my problem sufficiently, so I attach the mentioned file.

 Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 14 Avr 2016
v=importdata('1.dat')
w=v(1:2:end)
out=regexprep(w,'(?<=\S+,\S+),', ' ')

2 commentaires

Denis Dudas
Denis Dudas le 14 Avr 2016
Thank you for your quick answer. Please, what would be different if I need to remove all the commas?
Azzi Abdelmalek
Azzi Abdelmalek le 14 Avr 2016
Modifié(e) : Azzi Abdelmalek le 14 Avr 2016
out=regexprep(w,',', ' ')

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Analysis dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by