Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #83758 > unrolled thread

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

Started byWolfgang Maier <wolfgang.maier@biologie.uni-freiburg.de>
First post2015-01-14 15:35 +0100
Last post2015-01-14 15:35 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: what would be the regular expression for null byte present in a string Wolfgang Maier <wolfgang.maier@biologie.uni-freiburg.de> - 2015-01-14 15:35 +0100

#83758 — Re: what would be the regular expression for null byte present in a string

FromWolfgang Maier <wolfgang.maier@biologie.uni-freiburg.de>
Date2015-01-14 15:35 +0100
SubjectRe: what would be the regular expression for null byte present in a string
Message-ID<mailman.17722.1421246163.18130.python-list@python.org>
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

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web