欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Matlab 实现特定位置的字符串的截取

程序员文章站 2022-05-29 13:56:54
...
save_path = 'H:\Experiment\Img\';
smap_list = 'P1_front_img.jpg';
cell_str = strsplit(smap_list,'_');  %分成三段: 'P1'    'front'    'img.jpg'
smap_name = cell_str{1,1};
save_full_path = strcat(save_path, smap_name, '.jpg');  % H:\Experiment\Img\P1.jpg

灵活使用strsplict函数,可以截取任意位置的字符窜。