Effacer les filtres
Effacer les filtres

how can I extract special contents of a text?

1 vue (au cours des 30 derniers jours)
ali
ali le 11 Avr 2016
Commenté : ali le 11 Avr 2016
given a text with several parenthesis in format of (a,b). how can I extract contents of these parenthesis( a and b)? I used textscan and regexp but unsuccessful.
  2 commentaires
Walter Roberson
Walter Roberson le 11 Avr 2016
Are the parenthesis "nested", such as
(a,(b,c))
? Nested parenthesis are a nuisance to deal with.
ali
ali le 11 Avr 2016
@Walter No, it's not nested. Guillaume's answer worked. Thanks.

Connectez-vous pour commenter.

Réponse acceptée

Guillaume
Guillaume le 11 Avr 2016
regexp(yourstring, '(?<=\()[^)]+', 'match')
should do it. It matches any sequence of anything but closing brackets preceded by an opening bracket. Note that the opening bracket has to be escaped as it's a special character in regexes.
  3 commentaires
Guillaume
Guillaume le 11 Avr 2016
  • (?<= starts a look-behind. It tells the regular expression engine to look for something before the match
  • \(| is the something in the look-behind. It is basically an opening bracket. Because opening brackets have special meaning in regular expression, it has to be escaped with |\.
  • ) closes the look-behind, so the whole-look behind expression is (?<=\(), which tells the regular expression that a match must be immediately preceded by an opening bracket.
  • [^)]+ means match one or more and as many (the +) of anything that is not (the ^) a closing bracket (the )).
Therefore, the regular expression matches anything preceded by an opening bracket up to a closing bracket (or the end of the string).
If the (or the end of the string) bothers you, you could make sure that the anything is actually followed by a closing bracket by adding a look-ahead expression:
regexp(yourstring, '(?<=\()[^)]+(?=\))', 'match')
As per Walter's comment, this won't work when you have nested parenthesis. But regular expression are not really suited for arbitrary nesting. You would have to write a proper parser in that case.
ali
ali le 11 Avr 2016
ok, thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by