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+'
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+'
Release files for inrex 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| inrex-1.1.1.tar.gz | 2.7 kB | Details |
Release files / inrex-1.1.1.tar.gz
| Download URL | inrex-1.1.1.tar.gz |
|---|---|
| Size | 2.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c2f955ee175b7103d8162f89a89dcfff6213c5d90b10ada25c93ab3b6de1838b
|
|
BLAKE2b-256 checksum How to use checksums |
0ee31208aaa54f622ca637b090ac5d64459f6a37ad0fa46fa78f0f5785922848
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |