Read data from string

3 Ansichten (letzte 30 Tage)
Artyom
Artyom am 7 Aug. 2013
I have string line:
x='abc123(xyz456)'
How to read information only in brackets, to have result:
y='xyz456'.

Akzeptierte Antwort

Evan
Evan am 7 Aug. 2013
Bearbeitet: Evan am 7 Aug. 2013
>> x='abc123(xyz456)';
>> regexp(x,'(?<=\().+(?=\))','match')
ans =
'xyz456'
This command uses regexp and, specifically, lookaround assertions. It's basically saying, if you find a group of characters, look behind to see if there is an "open parenthesis" character and look ahead to see if there is a "close parenthesis" character. If so, return all the characters between them.
  6 Kommentare
per isakson
per isakson am 7 Aug. 2013
Bearbeitet: per isakson am 7 Aug. 2013
Surprise!
regexp('_A_A-', '(?<=_)[^_]+?(?=-)', 'match' )
ans =
'A'
Thus, doc should say something like
Lazy expression: match as few characters as necessary **downstream**.
Cedric
Cedric am 7 Aug. 2013
Bearbeitet: Cedric am 8 Aug. 2013
Yep, in other words, it stops when it matches the last part of the pattern for the first time (lazy), but it doesn't pull back the starting point (the tail? ;-)) to minimize the match (not that lazy finally, or really really lazy in fact). Thankfully, you see/understand this once and you never forget it!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Azzi Abdelmalek
Azzi Abdelmalek am 7 Aug. 2013
y=regexp(x,'(?<=\()[\w]+(?=\))','match')
  1 Kommentar
Azzi Abdelmalek
Azzi Abdelmalek am 7 Aug. 2013
%or
x=x='abc123 (xyz 45_6) ddd (rtr)ccc'
y=regexp(x,'\(([\w\s]+)\)','tokens');
celldisp(y)

Melden Sie sich an, um zu kommentieren.


Jan
Jan am 7 Aug. 2013
x = 'abc123(xyz456)';
ini = strfind(x, '(');
fin = strfind(x, ')');
key = x(ini(1) + 1:fin(1) - 1);

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by