Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #50968
| Path | csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <devyncjohnson@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.042 |
| X-Spam-Evidence | '*H*': 0.92; '*S*': 0.00; '(at': 0.04; 'expressions': 0.07; 'string': 0.09; 'python': 0.11; ':-)': 0.16; 'wrote:': 0.18; 'shell': 0.22; 'header:User-Agent:1': 0.23; 'skip': 0.24; 'least': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'fastest': 0.30; 'received:10.0.0': 0.31; 'perl': 0.31; 'regular': 0.32; 'knows': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'method': 0.36; 'received:10.0': 0.36; 'should': 0.36; 'received:10': 0.37; 'sometimes': 0.38; '8bit%:86': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'everybody': 0.60; 'concept.': 0.84; 'subject:skip:S 10': 0.84; 'choice.': 0.93 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=N+8gAg34kv5mi9M73UmHfLHqwrIG8v1QaOdRe2a6oSk=; b=Mx8pxLcnkvLuv/n8/tWEQqaMqx6+EfDf6h41i0VJgRsWo1AxACNIV3/JBCo0kM8Qpu lEoJQb2f5TzLqCwQtWJStheqh+KPBbCFGswu2UX3hGTy086hPbclp0D4PJNra2nRDLrV ZCNn20W6sRUIwn2K4DBffU1y7wgGx+kMXPp3nSevySHj/w57A5ZQV4PsEWZ5/nntx0QE OIXh8nGifgO4tnPdtuaWKMua+DrvR5Wmqtmm0lnUIkriAiNdIHr2xzENzATa/zCBuOeA WB4m/TNwk4UhrLGd9slmuyL07usPX9wzAezqap/fCwuqrIiQS8+aEK0HVTXXDWP0Sekv NKxA== |
| X-Received | by 10.50.36.100 with SMTP id p4mr14833680igj.30.1374324620791; Sat, 20 Jul 2013 05:50:20 -0700 (PDT) |
| Date | Sat, 20 Jul 2013 08:50:18 -0400 |
| From | Devyn Collier Johnson <devyncjohnson@gmail.com> |
| User-Agent | Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130623 Thunderbird/17.0.7 |
| MIME-Version | 1.0 |
| To | "python-list@python.org >> Python Mailing List" <python-list@python.org> |
| Subject | Re: Find and Replace Simplification |
| References | <mailman.4865.1374240179.3114.python-list@python.org> <51e967bb$0$29971$c3e8da3$5496439d@news.astraweb.com> <ksbt1a$5q1$1@ger.gmane.org> <CANc-5UwzGycuFNxu=U1PS4bTB7=AwWLaQF-o3jLzmYxjjrAN4Q@mail.gmail.com> <ksdtds$8ej$1@ger.gmane.org> |
| In-Reply-To | <ksdtds$8ej$1@ger.gmane.org> |
| Content-Type | text/plain; charset=UTF-8; format=flowed |
| Content-Transfer-Encoding | 8bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4924.1374324623.3114.python-list@python.org> (permalink) |
| Lines | 18 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1374324623 news.xs4all.nl 15998 [2001:888:2000:d::a6]:53374 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:50968 |
Show key headers only | View raw
On 07/20/2013 07:48 AM, Serhiy Storchaka wrote: > 19.07.13 21:08, Skip Montanaro написав(ла): >> Serhiy> The string replace() method is fastest (at least in Python >> 3.3+). See >> Serhiy> implementation of html.escape() etc. >> I trust everybody knows by now that when you want to use regular >> expressions you should shell out to Perl for the best performance. :-) > > If you want to use regular expressions Python is not the best choice. > But if you want to use Python regular expressions sometimes are the > best choice. > > That is an interesting concept. (^u^) Mahalo, DCJ
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Find and Replace Simplification Devyn Collier Johnson <devyncjohnson@gmail.com> - 2013-07-19 09:22 -0400
Re: Find and Replace Simplification Novocastrian_Nomad <gregory.j.baker@gmail.com> - 2013-07-19 06:38 -0700
Re: Find and Replace Simplification John Gordon <gordon@panix.com> - 2013-07-19 14:28 +0000
Re: Find and Replace Simplification Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-19 16:22 +0000
Re: Find and Replace Simplification Serhiy Storchaka <storchaka@gmail.com> - 2013-07-19 20:29 +0300
Re: Find and Replace Simplification Skip Montanaro <skip@pobox.com> - 2013-07-19 13:08 -0500
Re: Find and Replace Simplification Devyn Collier Johnson <devyncjohnson@gmail.com> - 2013-07-19 17:44 -0400
Re: Find and Replace Simplification Dave Angel <davea@davea.name> - 2013-07-19 18:45 -0400
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-20 12:16 +0100
Re: Find and Replace Simplification Serhiy Storchaka <storchaka@gmail.com> - 2013-07-20 14:48 +0300
Re: Find and Replace Simplification Serhiy Storchaka <storchaka@gmail.com> - 2013-07-20 14:57 +0300
Re: Find and Replace Simplification Devyn Collier Johnson <devyncjohnson@gmail.com> - 2013-07-20 08:41 -0400
Re: Find and Replace Simplification Devyn Collier Johnson <devyncjohnson@gmail.com> - 2013-07-20 08:50 -0400
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-20 18:03 +0100
Re: Find and Replace Simplification Dave Angel <davea@davea.name> - 2013-07-20 14:04 -0400
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-20 19:37 +0100
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-20 19:41 +0100
Re: Find and Replace Simplification Dave Angel <davea@davea.name> - 2013-07-20 17:56 -0400
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-20 23:33 +0100
Re: Find and Replace Simplification Serhiy Storchaka <storchaka@gmail.com> - 2013-07-21 10:44 +0300
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-21 12:29 +0100
Re: Find and Replace Simplification Serhiy Storchaka <storchaka@gmail.com> - 2013-07-21 15:28 +0300
Re: Find and Replace Simplification Joshua Landau <joshua@landau.ws> - 2013-07-21 13:49 +0100
csiph-web