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

Thomas 'PointedEars' Lahn PointedEars at web.de
Wed Jan 14 08:42:45 EST 2015


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\x0010232ae8944a\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

You need a character class with that range.

> Can anyone help me with a working regex for it.

Yes.

> ________________________________
> 
> PLEASE NOTE: The information contained in this electronic mail message is
> intended only for the use of the designated recipient(s) named above. […]

Please disable this nonsense, do not post multi-part messages, or if this is 
not possible with your e-mail client or provider, use another one, 
respectively.

-- 
PointedEars

Twitter: @PointedEars2
Please do not cc me. / Bitte keine Kopien per E-Mail.



More information about the Python-list mailing list