regexp for sentence that contains parentheses
4 次查看(过去 30 天)
显示 更早的评论
I have a *.csv file that I read wih the following command:
filetext = fileread('example_file.csv');
This file contains a header that I would like to read line-by-line. The header contains some lines like:
Experiment name;AFS2_test1
Integration time internal baseline (ms);10.00
To look for the line that matches with the first one ('Experiment name') I do the following:
expr = '[^\n]*Experiment name[^\n]*'
matches = regexp(filetext,expr,'match');
matches =
1×1 cell array
{'Experiment name;AFS2_test1'}
But when I search for the second line ('Integration time (ms)') I get:
expr = '[^\n]*Integration time (ms)[^\n]*'
matches = regexp(filetext,expr,'match')
matches =
0×0 empty cell array
I suspect it has anything to do with the parentheses that enclose the word 'ms' but i'm not sure. Who can help me to define the correct regexp?
采纳的回答
Guillaume
2019-6-26
Yes, all special regexp characters, [](){}.*+?^$\, have to be escaped with a \, so:
expr = '[^\n]*Integration time \(ms\)[^\n]*'
0 个评论
更多回答(1 个)
另请参阅
类别
在 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!