How to search for strings in strings?
4 次查看(过去 30 天)
显示 更早的评论
Hello,
I get many strings from our devices with some information. There are two different kinds of strings :
- 011_c_srr_Rtzfi_at000_hh5_fs_v343_l067_i1_Test_Test or 041_c_ddr_Rtzfi_ds000_hh5_fs_v343_l037_i1_Test_hall and so on ......
- 061_t_err_Rsas_au000_ti3_fs_v777_l011_ or 021_t_err_Rsas_au230_ti3_fs_v777_l031_ and so on ......
I need the following part of the string to get the information i need l067 / l037 / l011 and so on. l067 means 67% and I037 means 37%
So the result i want is 67 / 37 ..... :)
I am new here i spend several hours but my code does not work... :/
Thank you
0 个评论
回答(3 个)
Antonio Jesús Periñan Freire
2020-5-13
Hello,
you can do this easily with text processing.
First import the data
source = importdata('matlabtext.txt');
% Define a pattern (you can do this also for the other 2 patterns)
pattern = 'l067';
Then search for this pattern within the imported text file:
% This will return empty when the string pattern is not found:
rows_A = cellfun(@(x)strfind(x,pattern),source,'un',0);
% And convert that into ones and delete the empty values
rows_A = find(~cellfun(@isempty,rows_A));
Then simply get the length of the variable and this will give you the number of times that this string appears in the text:
num_A = length(rows_A)
3 个评论
Antonio Jesús Periñan Freire
2020-5-13
Is then your pattern _I0xx? or the _I0 string is repeated somewhere else?
You can use that _I0 to find the position in the string you want to extract.
Walter Roberson
2020-5-13
编辑:Walter Roberson
2020-5-13
regexp(VARIABLE, '(?<=_l0)\d\d(?=_)', 'match', 'once')
VARIABLE can be a character vector, or a cell array of character vectors, or a string array.
You can str2double() the output
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!