Identifying a file based on character
1 次查看(过去 30 天)
显示 更早的评论
Hello, I designed an experiment and I am preparing to write a script for data analysis, I want to select a file to process based on a condition (i.e. a set of characters in the file name). if the filename(001BL100XP0102.HWR) contains P01 then target cordinate is [24.000;13.000];
Any idea of how to write this code. Thanks in advance, I am still a learner
2 个评论
madhan ravi
2019-1-21
编辑:madhan ravi
2019-1-21
isn't it 10 and 12 ? ah so you want to assign coordinates if the filename contains the substring 'P01'?
采纳的回答
Kevin Phung
2019-1-21
编辑:Kevin Phung
2019-1-21
example use of the contains() function:
my_string = '001BL100XP0102.HWR'
if contains(my_string,'P01')
targ_coord = [24.000;13.000];
% insert more elseif conditions here
end
The regexp() function may help you here too. Let me know if this is what you needed or if you need further clarification.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!