replaceing a specific character in a cell array of strings
Ältere Kommentare anzeigen
I have a cell array of {'12034' '10045' '24000' } I need to replace all the third characters by '.'. so I need {'12.34' '10.45' '24.00' }. thanks
Antworten (1)
Walter Roberson
am 10 Mai 2012
cellfun(@(S) [S(1:2) '.' S(4:end)], YourCell, 'Uniform', 0)
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!