REGEX Gone Wild in Python

Advanced Patterns

Where the wild regex patterns come from...

Subpages

Example Patterns

                import re
                pattern = r'\b\w+\b'
                print(re.findall(pattern, 'hello world'))
            

More Info

For more information, see our more info page.