Metadata-Version: 1.0
Name: inrex
Version: 1.0.5
Summary: Regular expressions as infix operations
Home-page: UNKNOWN
Author: Krister Hedfors
Author-email: None
License: UNKNOWN
Description: 
        from inrex import  match, search, split, findall, finditer
        
        if 'asd 123' |match| r'(\w+) (\d+)':
        print 'word is', match[0]
        print 'digit is', match[1]
        
        if 'asd 123' |match| r'(?P<word>\w+) (?P<digit>\d+)':
        print 'word is', match['word']
        print 'digit is', match['digit']
        
        print 'asd 123 qwe 456' |findall| r'\d+'
        print 'asd 123 qwe 456' |split| r'\d+'
        print 'asd 123 qwe 456' |split(maxsplit=1)| r'\d+'
        
Platform: UNKNOWN
