index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a343.py
blob: fef1d4f01957530be870ba85989c864123471c2c (
plain
)
1
2
3
4
import
re
def
num_position
(
text
):
for
m
in
re
.
finditer
(
"\d+"
,
text
):
return
m
.
start
()