regular expressions resources and regular expression problem
2 次查看(过去 30 天)
显示 更早的评论
Hi all, I don't know anything about regular expressions and I have two questions:
- What is the most effective way to learn regular expressions and where to find the best possible tutorials, examples, exercises etc.
- I have the following problem. I would like to extract (1) a list variables and (2) a list of matlab functions from a string. The variables have a precise definition: (i) they can start with 'a' 'd' or 'ee'; (2) then an underscore '_'; (3) then an integer 'n'. For example, the variables could be 'a_1', 'd_100', 'ee_3289' and the expression to parse could look like: 'cos(exp(a_2/4*d_1^3-ee_4)+d_85)'. In this example, the list of variables is 'a_2', 'd_1', 'ee_4', 'd_85' and the list of matlab functions is 'cos', 'exp'. My question here is what is the (best) regular expression to extract that information?
Thanks, Pat
0 个评论
采纳的回答
Andrei Bobrov
2012-9-30
编辑:Andrei Bobrov
2012-9-30
2.
str = 'cos(exp(a_2/4*d_1^3-ee_4)+d_85)';
fun = regexp(str,'\w*(?=\()','match')
var = regexp(str,'(a|d|ee)_\d*','match')
3 个评论
更多回答(3 个)
Ned Gulley
2013-5-8
Another way to get good at regular expressions is to practice on Cody with all the problems that have been tagged "regexp".
0 个评论
Daniel Shub
2012-9-30
Assuming a string x,
[a, b] = regexp(x, '(a|d|(ee))(_)([0-9]*)', 'start', 'end')
will find the start and end indices of your "variables." This will allow for a variable a_0 which may or may not be desired. Without a rule for defining functions that handles the numerous edge cases, creating the regexp is difficult. Andrei's answer seems reasonable to me.
0 个评论
Patrick Mboma
2012-9-30
2 个评论
Walter Roberson
2012-9-30
I think there is an O'Reilly book on regular expressions.
The regular expressions used in MATLAB are a mish-mash between capabilities in other languages. They have similarities to Perl, so it might make sense to study the resources for regular expressions in Perl (and there is probably a book or three for that topic alone.)
另请参阅
类别
在 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!