help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: string-match bug?


From: Colin S. Miller
Subject: Re: string-match bug?
Date: Mon, 07 Dec 2009 15:08:38 +0000
User-agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090706)

Andreas Roehler wrote:
Hi,

is this a bug?

(string-match "" "foo") => 0


Andreas,
that is checking if the empty string can be found somewhere in the string "foo",
which always matches at offset 0.

If you want to check if "foo" IS the empty string then do
(string-match "^$" "foo")

HTH,
Colin S. Miller

--
Replace the obvious in my email address with the first three letters of the 
hostname to reply.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]