[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: I can not understant a paragraph in Emacs Lisp Reference.
From: |
Teemu Likonen |
Subject: |
Re: I can not understant a paragraph in Emacs Lisp Reference. |
Date: |
Sat, 11 Jul 2009 17:55:47 +0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.96 (gnu/linux) |
On 2009-07-11 22:46 (+0800), waterloo wrote:
> I try with re-builder , find that `"[^\\]"' is corrct .
> `"[^\]"' can not find anything .
Please note that in regexp-builder the regexp is built in a Lisp
string--in which you need to backslash-escape all backslashes. It means
that Lisp string "[^\\]" is really regexp [^\] .