How to capture tokens using regular expressions?

23 次查看(过去 30 天)
Dear all, I would like to capture two parts of a sequence of strings. I would like to call the first part "main" and the second part "digits". The expressions in the strings have a distinct pattern in that they either have ONE underscore or parentheses. What I am looking to capture is the part before the underscore or the opening parenthesis (main) and the part after the underscore or inside the parenthesis (digits). As an example, the typical exercise will be of the form
expression={'abcd_1','ghsa(22)','gaver_45','fadae(8)'}
out=regexp(expression,pattern,'name')
The result should be a cell array where each cell contains a structure with fields "main" and "digits". In the first case, for instance, the result should be
main='abcd' and digits='1'.
What I am missing is the right "pattern". Any suggestions?
  5 个评论

请先登录,再进行评论。

回答(2 个)

Benjamin Kraus
Benjamin Kraus 2015-9-16
expression={'abcd_1','ghsa(22)','gaver_45','fadae(8)'};
pattern = '(?<main>[a-zA-Z]+)(?:[_\(])(?<digits>[0-9]+))?';
out = regexp(expression,pattern,'once','names');
The pattern breaks down like this:
  • (?<main>[a-zA-Z]+) - A token named "main" with only letters.
  • (?:[_\(]) - An uncaptured token containing either an underscore or "(".
  • (?<digits>[0-9]+) - A token named "digits" with only numbers.
  • )? - An optional ")" character at the end.
The 'once' means to capture the pattern only once per input string. I think in this case you can leave it out.
  1 个评论
Patrick Mboma
Patrick Mboma 2015-9-17
Dear Benjamin,
Thanks for your input. Your solution would work but would probably need to be refined in the sense that the first part main, may also include some digits. For instance,
whatever345whatever_100
would also be something I would like to capture. It is the second part that would only include digits.
A potential algorithm would be to say everything before an opening parenthesis or an underscore is to be captured in "main", while everything after an underscore or inside parentheses is to be captured in "digits".

请先登录,再进行评论。


Kirby Fears
Kirby Fears 2015-9-16
This isn't the most efficient or elegant solution, but it solves the problem. Let me know if your data is large enough that this code is slow. I can optimize it.
ex={'abcd_1','ghsa(22)','gaver_45','fadae(8)'};
temp=cellfun(@(s)strsplit(s,{'_','(',')'}),ex,'UniformOutput',false);
ex_main=cellfun(@(s)s{1},temp,'UniformOutput',false);
ex_digit=cellfun(@(s)s{2},temp,'UniformOutput',false);
clear temp;
  1 个评论
Patrick Mboma
Patrick Mboma 2015-9-17
Dear Kirby,
There are many ways to solve this problem and what you are suggesting is definitely one way to do it. However, I would like to use the elegance of regular expressions and get to practice something I am not very good at yet.
In my current solution for instance, I first use regular expressions to transform all the inputs into the same format
whatever_45
then I look for the underscore, etc. But this entails several lines of codes.
Thanks for your input!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by