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
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to