How to extract before and after a character up to a certain limit?

81 次查看(过去 30 天)
Hey everyone, I'm playing around with extractBefore and extractAfter and I was wondering if I could get Matlab to extract everything before and after a character up to a specified character boundary. Like so,
str = 'aazbbkkcbbsszaa'
I want to take something like this example string and extract all the characters before and after "c" up until it reaches the letter "z". SO my outputs might look like,
extractAfter = 'bbss'
extractBefore = 'bbkk'
How can I do this?

采纳的回答

madhan ravi
madhan ravi 2020-9-29
Before = regexp(str, '(?<=\z)(?:.*)(?=\c)', 'match', 'once')
After = regexp(str, '(?<=\c)(?:.*)(?=\z)', 'match', 'once')
  5 个评论
Walter Roberson
Walter Roberson 2020-9-29
Before = regexp(str, '(?<=\z)(?:.*)(?=\c)', 'match', 'once')
In that code, the .* followed by (?=\c) tells regexp to go from the current position (imemdiately following a z) as far as possible towards the end of the string, and then to "back up" until just before a c. An implication of that is that if there are more than one c in the string after the z, that the .* part will match everything up to the last of the c instead of everything up to the first of the c.
You can fix that by changing to (?:.*?) or by using the construct I used, [^c]+

请先登录,再进行评论。

更多回答(2 个)

Walter Roberson
Walter Roberson 2020-9-29
regexp(str, {'(?<=z)[^c]+', '(?<=c)[^z]+'}, 'match','once')
  1 个评论
Walter Roberson
Walter Roberson 2020-9-29
If you wanted to allow for the possibility of an empty match, if the string contained z immediately followed by c, then you should change the [^c]+ to [^c]* . If you want to allow for the possibility of the c being the last character in the string and you want to return empty, then change the [^z]+ to [^z]*

请先登录,再进行评论。


Image Analyst
Image Analyst 2020-9-29
If you want to use those specific functions, I did it by calling them twice, once with c and once with z.
str = 'aazbbkkcbbsszaa'
sb = extractBefore(str, 'c')
sa = extractAfter(str, 'c')
stringBefore = extractAfter(sb, 'z')
stringAfter = extractBefore(sa, 'z')
Of course you could combine them into fewer lines (2 instead of 4), though at the drawback of making it somewhat more cryptic:
stringBefore = extractAfter(extractBefore(str, 'c'), 'z')
stringAfter = extractBefore(extractAfter(str, 'c'), 'z')

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by