Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'output': 0.05; 'string.': 0.05; 'subject:would': 0.07; 'string': 0.09; '8bit%:30': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:string': 0.09; 'fetch': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'shambhu': 0.16; 'subject: \n ': 0.16; 'subject:expression': 0.16; 'subject:regular': 0.16; 'thanks,': 0.17; 'wrote:': 0.18; 'command': 0.22; 'portion': 0.22; 'header:User-Agent:1': 0.23; 'replace': 0.24; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'characters': 0.30; "skip:' 10": 0.31; 'exclude': 0.31; 'received:132': 0.31; 'subject:what': 0.31; 'anyone': 0.31; 'subject:the': 0.34; 'could': 0.34; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'as:': 0.81 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Wolfgang Maier Subject: Re: what would be the regular expression for null byte present in a string Date: Wed, 14 Jan 2015 15:35:40 +0100 References: <39F9E8A5546B9448A82E55FBEBE3EC450BD029A5@SACMBXIP03.sdcorp.global.sandisk.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: px1.ruf.uni-freiburg.de User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 In-Reply-To: <39F9E8A5546B9448A82E55FBEBE3EC450BD029A5@SACMBXIP03.sdcorp.global.sandisk.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 25 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421246163 news.xs4all.nl 2894 [2001:888:2000:d::a6]:41087 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:83758 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