what would be the regular expression for null byte present in a string

Wolfgang Maier wolfgang.maier at biologie.uni-freiburg.de
Wed Jan 14 09:35:40 EST 2015


On 01/13/2015 02:40 PM, Shambhu Rajak wrote:
> I have a string that I get as an output of a command as:
>
> '\x01\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00*10232ae8944a*\x02\x00\x00\x00\x00\x00\x00\x00\n'
>
> I want to fetch ‘*10232ae8944a*’ from the above string.
>
> I want to find a re pattern that could replace all the \x01..\x0z to be
> replace by empty string ‘’,  so that I can get the desired portion of string
>
> Can anyone help me with a working regex for it.
>
> Thanks,
>
> Shambhu
>

If the characters you need to keep always form a contiguous stretch, you 
can also use:

exclude = ''.join(chr(n) for n in range(32))
s_in.strip(exclude)

Wolfgang




More information about the Python-list mailing list