mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-10 07:41:51 +08:00
21 lines
241 B
Python
21 lines
241 B
Python
"""
|
|
std library stuff
|
|
"""
|
|
|
|
# -----------------
|
|
# re
|
|
# -----------------
|
|
import re
|
|
c = re.compile(r'a')
|
|
#? int()
|
|
c.match().start()
|
|
|
|
#? int()
|
|
re.match(r'a', 'a').start()
|
|
|
|
#? int()
|
|
next(re.finditer('a', 'a')).start()
|
|
|
|
#? str()
|
|
re.sub('a', 'a')
|