From: hector <hectorlahoz@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Negative Lookahead Equivalent in emacs
Date: Tue, 9 May 2017 10:44:28 +0200 [thread overview]
Message-ID: <20170509084428.GA3576@workstation> (raw)
In-Reply-To: <49e1dd7d-4be5-4b03-b9e2-e26b15b0a6cb@googlegroups.com>
On Mon, May 08, 2017 at 10:15:42PM -0700, luishenriquezperez@gmail.com wrote:
> Hi,
>
> I'm trying to write a regex that matches the last character of a sequence of non-whitespace characters '[^\n\r\t\f ]', or an empty line matching ^$.
>
> Thus:
> Hello World! --> "o" and "!" would be matched
>
> In non-elisp regex languages I know the code for this is: \S(?!\S)
> I know that \S is equivalent too [^ /n/r/t/f].
> But I'm unsure of what the elisp equivalent (if any) of the negative lookahead (?!).
>
> I saw on this forum a post "gnu.emacs.help › regex nirvana - near miss"
> Where Drew Adams said: "Typically, what you want to do for this in Emacs Lisp is to combine
> the use of a regexp for positive matching with other code that takes
> care of the non-matching (negation) need. "
>
> However, I'm not sure how to go about doing this.
Perhaps
\\S-\\s-
or
[^[:space:]][[:space:]]
not including the ^$. I guess you just had to add "\\|^$" to the preceding expressions.
I'm not sure if there is any difference between the two syntaxes.
Note that these expressions depend on the syntax table. So the definition of
"[[:space:]]" can change depending on syntax table. It is not necessarily
"[\n\t\f\r\v ]"
next prev parent reply other threads:[~2017-05-09 8:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-09 5:15 Negative Lookahead Equivalent in emacs luishenriquezperez
2017-05-09 7:16 ` Emanuel Berg
2017-05-09 8:44 ` hector [this message]
2017-05-09 9:54 ` Wasell
2017-05-10 14:23 ` luishenriquezperez
2017-05-09 10:03 ` Felix Dietrich
2017-05-09 13:50 ` luishenriquezperez
2017-05-10 1:41 ` Emanuel Berg
2017-05-10 15:51 ` luishenriquezperez
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170509084428.GA3576@workstation \
--to=hectorlahoz@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).