2016-06-07 20 views

Antwort

5
import re 
str = "some text 12345 other text" 
result = re.split("\d+", str)[0] 
Verwandte Themen