MATLAB: Extract specific rows or columns containing letters (xxx) From dat File in Matlab

.csv fileextract from dat filematlab script

looking to come up with a script in matlab.the script should extract rows and columns containing/starting with letters xxx only in a dat file. This should be repeated for a number of DAT files. I have attached example xlsx file. for this example file I would like to extract any data that has the letters NSV. Any assist is welcomed. thanks in advance.

Best Answer

The code below reads the xlsx file as a table t using readtable and converts it to a cell array C with table2cell . It uses cellfun and regexp to determine which cells in C contain 'NSV'. Find is used to determine the row and column of each entry in tokens in the cell array C.
If you need to match three different combinations of letters, replace 'NSV' in the regexp with said combination. If you need to do it programmatically, you can use strcat to obtain the expression string used for the regexp.
t = readtable('dta.xlsx','ReadVariableNames',false);
C = table2cell(t);
[tokens,matches] = cellfun(@(x) (regexp((x),'(.+)(?<=NSV)(.+)','match','tokens')),C,'un',0);
[row,col] = find(cellfun(@(x) ~isempty(x),tokens));
data = C(row:end,col);
The first row of data is the char vectors which contain 'NSV', where the following rows contain all the corresponding data.
Sample output, first column of data:
'BCS_PHY/FUN_OUT/ENV/HYD_NSV1_COIL1_CURRENT_OVERRIDE_OUTPUT'
'0'
'0'
'0.012293'
'0.012293'
'-0.024586'
...
...
...
Sample output, second column of data:
'BCS_PHY/FUN_OUT/ENV/HYD_NSV1_COIL2_CURRENT_OVERRIDE_OUTPUT'
'0.012305'
'0'
'0.012305'
'0'
'-0.024611'
...
...
...