Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > String search vs regexp search

Reply
Thread Tools

String search vs regexp search

 
 
Anand Pillai
Guest
Posts: n/a
 
      10-12-2003
To search a word in a group of words, say a paragraph or a web page,
would a string search or a regexp search be faster?

The string search would of course be,

if str.find(substr) != -1:
domything()

And the regexp search assuming no case restriction would be,

strre=re.compile(substr, re.IGNORECASE)

m=strre.search(str)
if m:
domything()

I was about to do a test, then I thought someone here might have
some data on this already.

Thanks folks!

-Anan
 
Reply With Quote
 
 
 
 
Duncan Booth
Guest
Posts: n/a
 
      10-13-2003
(Anand Pillai) wrote in
news: m:

> To search a word in a group of words, say a paragraph or a web page,
> would a string search or a regexp search be faster?
>
> The string search would of course be,
>
> if str.find(substr) != -1:
> domything()
>
> And the regexp search assuming no case restriction would be,
>
> strre=re.compile(substr, re.IGNORECASE)
>
> m=strre.search(str)
> if m:
> domything()
>
> I was about to do a test, then I thought someone here might have
> some data on this already.
>

Yes. The answer is 'it all depends'.

Things it depends on include:

Your two bits of code do different things, one is case sensitive, one
ignores case. Which did you need?

How long is the string you are searching? How long is the substring?

Is the substring the same every time, or are you always searching for
different strings. Can the substring contain characters with special
meanings for regular expressions?

The regular expression code has a startup penalty since it has to compile
the regular expression at least once, however the actual searching may be
faster than the naive str.find. If the time spent doing the search is
sufficiently long compared with the time doing the compile, the regular
expression may win out.

Bottom line: write the code so it is as clean and maintainable as possible.
Only worry about optimising this if you have timed it and know that your
searches are a bottleneck.

--
Duncan Booth
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
 
Reply With Quote
 
 
 
 
Anand Pillai
Guest
Posts: n/a
 
      10-13-2003
Sorry for being too brief!

I was talking about a function which 'counts' the number
of occurences using string & regexp.

I wrote the code for the regexp search as well as the function
search and tested it on a rather large file (800 KB) for
occurences of a certain word. I find that the string search
is at least 2 times faster than the one with regexp, excluding
the time for the regexp.compile() method. This is particularly
noticeable when the file becomes quite large and the word is
spread out.

I also thought the regexp would beat string thumbs down and I
am suprised at the result that it is the other way around.

Here is the code. Note that I am using the 'count' methods that
count the number of occurences rather than the 'find' methods.

# Test to find out whether string search in a data
# is faster than regexp search.

# Results: String search is much faster when it comes
# to many occurences of the sub string.

import time

def strsearch1(s, substr):

t1 = time.time()
print 'Count 1 =>', s.count(substr)
t2 = time.time()
print 'Searching using string, Time taken => ', t2 - t1

def strsearch2(s, substr):

import re

r=re.compile(substr, re.IGNORECASE)
t1 = time.time()
print 'Count 2 =>', len(r.findall(s))
t2 = time.time()
print 'Searching using regexp, Time taken => ', t2 - t1


data=open("test.html", "r").read()
strsearch1(data, "Miriam")
strsearch2(data, "Miriam")

# Output here...

D:\Programming\python>python strsearch.py
Count 1 => 45
Searching using string, Time taken => 0.0599999427795
Count 2 => 45
Searching using regexp, Time taken => 0.110000014305

Test was done on a windows 98 machine using Python 2.3, running
on 248 MB RAM, Intel 1.7 GHz chipset.

I was thinking of using regexp searches in my code, but this convinces
me to stick on to the good old string search.

Thanks for the replies.

-Anand

Duncan Booth <> wrote in message news:<Xns941360C9B9445duncanrcpcouk@127.0.0.1>...
> (Anand Pillai) wrote in
> news: m:
>
> > To search a word in a group of words, say a paragraph or a web page,
> > would a string search or a regexp search be faster?
> >
> > The string search would of course be,
> >
> > if str.find(substr) != -1:
> > domything()
> >
> > And the regexp search assuming no case restriction would be,
> >
> > strre=re.compile(substr, re.IGNORECASE)
> >
> > m=strre.search(str)
> > if m:
> > domything()
> >
> > I was about to do a test, then I thought someone here might have
> > some data on this already.
> >

> Yes. The answer is 'it all depends'.
>
> Things it depends on include:
>
> Your two bits of code do different things, one is case sensitive, one
> ignores case. Which did you need?
>
> How long is the string you are searching? How long is the substring?
>
> Is the substring the same every time, or are you always searching for
> different strings. Can the substring contain characters with special
> meanings for regular expressions?
>
> The regular expression code has a startup penalty since it has to compile
> the regular expression at least once, however the actual searching may be
> faster than the naive str.find. If the time spent doing the search is
> sufficiently long compared with the time doing the compile, the regular
> expression may win out.
>
> Bottom line: write the code so it is as clean and maintainable as possible.
> Only worry about optimising this if you have timed it and know that your
> searches are a bottleneck.

 
Reply With Quote
 
Jeremy Fincher
Guest
Posts: n/a
 
      10-14-2003
Duncan Booth <> wrote in message news:<Xns941360C9B9445duncanrcpcouk@127.0.0.1>...
> The regular expression code has a startup penalty since it has to compile
> the regular expression at least once, however the actual searching may be
> faster than the naive str.find. If the time spent doing the search is
> sufficiently long compared with the time doing the compile, the regular
> expression may win out.


Both regular expression searching and string.find will do searching
one character at a time; given that, it seems impossible to me that
the hand-coded-in-C "naive" string.find could be slower than the
machine-translated-coded-in-Python regular expression search.
Compilation time only serves to further increase string.find's
advantage.

Jeremy
 
Reply With Quote
 
Dennis Reinhardt
Guest
Posts: n/a
 
      10-14-2003
> I find that the string search
> is at least 2 times faster than the one with regexp
> r=re.compile(substr, re.IGNORECASE)


Off the top, maybe the regex is taking twice the time because it is doing
twice the work looking for both the lower case character and the upper case
character. It does not seem a fair test because the string find is case
sensitive.
--

Dennis Reinhardt

http://www.spamai.com?ng_py


 
Reply With Quote
 
Duncan Booth
Guest
Posts: n/a
 
      10-14-2003
(Jeremy Fincher) wrote in
news: om:

> Duncan Booth <> wrote in message
> news:<Xns941360C9B9445duncanrcpcouk@127.0.0.1>...
>> The regular expression code has a startup penalty since it has to
>> compile the regular expression at least once, however the actual
>> searching may be faster than the naive str.find. If the time spent
>> doing the search is sufficiently long compared with the time doing
>> the compile, the regular expression may win out.

>
> Both regular expression searching and string.find will do searching
> one character at a time; given that, it seems impossible to me that
> the hand-coded-in-C "naive" string.find could be slower than the
> machine-translated-coded-in-Python regular expression search.
> Compilation time only serves to further increase string.find's
> advantage.
>

I may have misremembered, but I thought there was a thread discussing this
a little while back which claimed that the regular expression library
looked for constant strings at the start of the regex, and if it found one
used Boyer-Moore to do the search. If it does, then regular expressions
searching for a constant string certainly ought to be much faster than a
plain string.find (as the length of the searched string tends towards
infinity).

If it doesn't, then it should.

--
Duncan Booth
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
 
Reply With Quote
 
Duncan Booth
Guest
Posts: n/a
 
      10-14-2003
Duncan Booth <> wrote in
news:Xns9414603182031duncanrcpcouk@127.0.0.1:

>> Both regular expression searching and string.find will do searching
>> one character at a time; given that, it seems impossible to me that
>> the hand-coded-in-C "naive" string.find could be slower than the
>> machine-translated-coded-in-Python regular expression search.
>> Compilation time only serves to further increase string.find's
>> advantage.
>>

> I may have misremembered, but I thought there was a thread discussing
> this a little while back which claimed that the regular expression
> library looked for constant strings at the start of the regex, and if
> it found one used Boyer-Moore to do the search. If it does, then
> regular expressions searching for a constant string certainly ought to
> be much faster than a plain string.find (as the length of the searched
> string tends towards infinity).
>
> If it doesn't, then it should.


Ok, found the code. Regular expression searches do indeed use a form of
Boyer-Moore, but not if you are ignoring case. So by specifying
re.IGNORECASE the OP got a double hit, not only does the code have to do
case insensitive comparisons, but it also has to crawl along looking at
every character in the search string instead of skipping most of them.

--
Duncan Booth
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
 
Reply With Quote
 
Jeremy Fincher
Guest
Posts: n/a
 
      10-14-2003
Duncan Booth <> wrote in message news:<Xns941462CDB5003duncanrcpcouk@127.0.0.1>...
> Ok, found the code. Regular expression searches do indeed use a form of
> Boyer-Moore, but not if you are ignoring case. So by specifying
> re.IGNORECASE the OP got a double hit, not only does the code have to do
> case insensitive comparisons, but it also has to crawl along looking at
> every character in the search string instead of skipping most of them.


That's cool! Where'd you find the code?

Jeremy
 
Reply With Quote
 
Alex Martelli
Guest
Posts: n/a
 
      10-14-2003
Jeremy Fincher wrote:

> Duncan Booth <> wrote in message
> news:<Xns941462CDB5003duncanrcpcouk@127.0.0.1>...
>> Ok, found the code. Regular expression searches do indeed use a form of
>> Boyer-Moore, but not if you are ignoring case. So by specifying
>> re.IGNORECASE the OP got a double hit, not only does the code have to do
>> case insensitive comparisons, but it also has to crawl along looking at
>> every character in the search string instead of skipping most of them.

>
> That's cool! Where'd you find the code?


Hmmm, dist/src/Modules/_sre.c in the Python CVS tree? Or Modules/_sre.c in
a standard source distribution?


Alex

 
Reply With Quote
 
Duncan Booth
Guest
Posts: n/a
 
      10-15-2003
Alex Martelli <> wrote in
newsCVib.282714$:

> Jeremy Fincher wrote:
>
>> Duncan Booth <> wrote in message
>> news:<Xns941462CDB5003duncanrcpcouk@127.0.0.1>...
>>> Ok, found the code. Regular expression searches do indeed use a form
>>> of Boyer-Moore, but not if you are ignoring case. So by specifying
>>> re.IGNORECASE the OP got a double hit, not only does the code have
>>> to do case insensitive comparisons, but it also has to crawl along
>>> looking at every character in the search string instead of skipping
>>> most of them.

>>
>> That's cool! Where'd you find the code?

>
> Hmmm, dist/src/Modules/_sre.c in the Python CVS tree? Or
> Modules/_sre.c in a standard source distribution?
>

Close, but it is actually a little bit complicated. _sre.c has the code
that does the search, including the skipping forward using an overlap
table, but the bit which checks for a literal prefix and builds the overlap
table is in lib/src_compile.py. So its in the Python code you have to look
to find that it ignores literal prefixes when ignoring case.

--
Duncan Booth
int month(char *p){return(124864/((p[0]+p[1]-p[2]&0x1f)+1)%12)["\5\x8\3"
"\6\7\xb\1\x9\xa\2\0\4"];} // Who said my code was obscure?
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
new RegExp().test() or just RegExp().test() Matěj Cepl Javascript 3 11-24-2009 02:41 PM
[regexp] How to convert string "/regexp/i" to /regexp/i - ? Joao Silva Ruby 16 08-21-2009 05:52 PM
Ruby 1.9 - ArgumentError: incompatible encoding regexp match(US-ASCII regexp with ISO-2022-JP string) Mikel Lindsaar Ruby 0 03-31-2008 10:27 AM
Programmatically turning a Regexp into an anchored Regexp Greg Hurrell Ruby 4 02-14-2007 06:56 PM
RegExp.exec() returns null when there is a match - a JavaScript RegExp bug? Uldis Bojars Javascript 2 12-17-2006 09:50 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57