removing text string
bearophileHUGS at lycos.com
bearophileHUGS at lycos.com
Thu Sep 11 08:54:15 EDT 2008
Ahmed, Shakir:
> Actually the number I am getting it is from slicing from a long text
> line. I need to slice 10 characters from that line but no string only
> numeric numbers. When I am slicing 10 characters those A, c, O is coming
> at the end.
It's better to avoid Regular expressions when they aren't necessary,
but once in a while they are the simpler way to solve a problem, you
may create one like this (mostly untested):
\d+?-\d+
Using it like:
>>> import re
>>> patt = re.compile(r"\d+?-\d+")
>>> patt.search("xxxxxx080829-7_A xxxx").group()
'080829-7'
>>> re.search(r"\d+?-\d+", "xxxxxx080829-7_A xxxx").group()
'080829-7'
Learning Regexps can be useful.
Bye,
bearophile
More information about the Python-list
mailing list