Answers for "in re python"

4

re python3

import re
>>> m = re.search('(?<=abc)def', 'abcdef')
>>> m.group(0)
'def'
Posted by: Guest on February-03-2020
1

python re

if pattern := re.search("[iI] am (.*)", "I am tired"):
    print(f"Hi {pattern.group(1)}, I'm dad!")
Posted by: Guest on January-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language