how to delete the dot in a string
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Roger
am 21 Jan. 2014
Kommentiert: Roger
am 22 Jan. 2014
like bbc.ed.123.f.txt how to change it to bbced123f.txt
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 21 Jan. 2014
Bearbeitet: Andrei Bobrov
am 21 Jan. 2014
a = 'bbc.ed.123.f.txt';
regexprep(a,{'\.','txt'},{'','.txt'})
or
[strrep(a(1:end-4),'.',''),'.txt']
Weitere Antworten (1)
ES
am 21 Jan. 2014
you have to handle the last dot(before file extension) and the other dots separately.
str='bbc.ed.123.f.txt';
idx=strfind(str,'.');
new_str=[strrep(str(1:idx(end)-1),'.',''),str(idx(end):end)];%idx(end) is the position of the last dot!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings 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!