How to search for strings in strings?
4 views (last 30 days)
Show older comments
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 Comments
Answers (3)
Antonio Jesús Periñan Freire
on 13 May 2020
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 Comments
Antonio Jesús Periñan Freire
on 13 May 2020
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
on 13 May 2020
Edited: Walter Roberson
on 13 May 2020
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 Comments
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!