Exporting a cell array whose dots were replaced by commas, results in added quotation marks
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
giannit
am 24 Apr. 2020
Bearbeitet: Ameer Hamza
am 24 Apr. 2020
I have strings in a cell array, I would like to replace dots with commas and then export it in a text file.
The following code
str={'This. is a test'}
writecell(str','test')
generates a txt file containing
This. is a test
while the following
str={'This. is a test'}
str=strrep(str,'.',',')
writecell(str','test')
generates a txt file containing
"This, is a test"
why are quotation marks " added? And how to remove them?
0 Kommentare
Akzeptierte Antwort
Ameer Hamza
am 24 Apr. 2020
Bearbeitet: Ameer Hamza
am 24 Apr. 2020
Change to this line
writecell(str','test', 'QuoteStrings', false)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!