Identifying a file based on character

2 ビュー (過去 30 日間)
Reuben Addison
Reuben Addison 2019 年 1 月 21 日
コメント済み: Reuben Addison 2019 年 1 月 21 日
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
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'?
Reuben Addison
Reuben Addison 2019 年 1 月 21 日
Yes please

サインインしてコメントする。

採用された回答

Kevin Phung
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 件)

カテゴリ

Help Center および File ExchangeSoftware Development Tools についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by