how to delete the dot in a string
10 ビュー (過去 30 日間)
古いコメントを表示
like bbc.ed.123.f.txt how to change it to bbced123f.txt
0 件のコメント
採用された回答
Andrei Bobrov
2014 年 1 月 21 日
編集済み: Andrei Bobrov
2014 年 1 月 21 日
a = 'bbc.ed.123.f.txt';
regexprep(a,{'\.','txt'},{'','.txt'})
or
[strrep(a(1:end-4),'.',''),'.txt']
その他の回答 (1 件)
ES
2014 年 1 月 21 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!