re.findall behaves weird

There are two things to note here:

  • re.findall returns captured texts if the regex pattern contains capturing groups in it
  • the r'\\.' part in your pattern matches two consecutive chars, \ and any char other than a newline.

See findall reference:

If one or more groups are present in the pattern, return a list of groups; this will be a list of tuples if the pattern has more than one group. Empty matches are included in the result unless they touch the beginning of another match.

Note that to make re.findall return just match values, you may usually

  • remove redundant capturing groups (e.g. (a(b)c) -> abc)
  • convert all capturing groups into non-capturing (that is, replace ( with (?:) unless there are backreferences that refer to the group values in the pattern (then see below)
  • use re.finditer instead ([x.group() for x in re.finditer(pattern, s)])

In your case, findall returned all captured texts that were empty because you have \\ within r'' string literal that tried to match a literal \.

To match the numbers, you need to use

-?\d*\.?\d+

The regex matches:

  • -? – Optional minus sign
  • \d* – Optional digits
  • \.? – Optional decimal separator
  • \d+ – 1 or more digits.

See demo

Here is IDEONE demo:

import re
s = r'abc123d, hello 3.1415926, this is my book'
pattern = r'-?\d*\.?\d+'
L = re.findall(pattern, s)
print(L)

Leave a Comment