Python split string on regex

后端 未结 3 2044
忘了有多久
忘了有多久 2020-12-11 15:01

I\'m trying to split a string using a regular expression.

Friday 1Friday 11 JAN 11

The output I want to achieve is

[\'Fr         


        
3条回答
  •  轮回少年
    2020-12-11 15:13

    The problem is the capturing parentheses. This syntax: (?:...) makes them non-capturing. Try:

    p = re.compile(r'((?:Friday|Saturday)\s*\d{1,2})')
    

提交回复
热议问题