programming-examples/python/Regular_Expression/Separate and print the numbers and their position of a given string.py
2019-11-15 12:59:38 +01:00

7 lines
308 B
Python

import re
# Input.
text = "The following example creates an ArrayList with a capacity of 50 elements. Four elements are then added to the ArrayList and the ArrayList is trimmed accordingly."
for m in re.finditer("\d+", text):
print(m.group(0))
print("Index position:", m.start())