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函数,可以截取任意位置的字符窜。
上一篇: java 使用正则获取一串字符串中的数字
下一篇: SQL截取字符串中的某个特定位置部分