regular expressions resources and regular expression problem

조회 수: 2 (최근 30일)
Hi all, I don't know anything about regular expressions and I have two questions:
  1. What is the most effective way to learn regular expressions and where to find the best possible tutorials, examples, exercises etc.
  2. 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

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 9월 30일
편집: Andrei Bobrov 2012년 9월 30일
1. Read here about the Regular Expressions
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
Andrei Bobrov
Andrei Bobrov 2012년 9월 30일
Corrected of var
Daniel Shub
Daniel Shub 2012년 9월 30일
Your regexp foo is so much better than mine. I always have to make things up.

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Ned Gulley
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".

Daniel Shub
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.

Patrick Mboma
Patrick Mboma 2012년 9월 30일
Thank you both. That is one big problem solved. The biggest remains though: how do I become as good as you guys are with regular expressions?
Thanks a lot, Pat.
  댓글 수: 2
Walter Roberson
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.)
Patrick Mboma
Patrick Mboma 2012년 9월 30일
Thanks Walter. It is something I will look into.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by