8

I have a string/pattern like this:

[xy][abc]

I try to get the values contained inside the square brackets:

  • xy
  • abc

There are never brackets inside brackets. Invalid: [[abc][def]]

So far I've got this:

import re
pattern = "[xy][abc]"
x = re.compile("\[(.*?)\]")
m = outer.search(pattern)
inner_value = m.group(1)
print inner_value

But this gives me only the inner value of the first square brackets.

Any ideas? I don't want to use string split functions, I'm sure it's possible somehow with RegEx alone.

Patric
  • 2,789
  • 9
  • 33
  • 60

3 Answers3

20

re.findall is your friend here:

>>> import re
>>> sample = "[xy][abc]"
>>> re.findall(r'\[([^]]*)\]',sample)
['xy', 'abc']
MattH
  • 37,273
  • 11
  • 82
  • 84
5
>>> import re
>>> re.findall("\[(.*?)\]", "[xy][abc]")
['xy', 'abc']
beerbajay
  • 19,652
  • 6
  • 58
  • 75
3

I suspect you're looking for re.findall.

See this demo:

import re
my_regex = re.compile(r'\[([^][]+)\]')
print(my_regex.findall('[xy][abc]'))
['xy', 'abc']

If you want to iterate over matches instead of match strings, you might look at re.finditer instead. For more details, see the Python re docs.

Wiktor Stribiżew
  • 607,720
  • 39
  • 448
  • 563
Edward Loper
  • 15,374
  • 7
  • 43
  • 52