From: luishenriquezperez@gmail.com
To: help-gnu-emacs@gnu.org
Subject: Re: Negative Lookahead Equivalent in emacs
Date: Wed, 10 May 2017 07:23:59 -0700 (PDT) [thread overview]
Message-ID: <603a9ada-a1ed-4630-bd8c-40504a9e36e6@googlegroups.com> (raw)
In-Reply-To: <MPG.337bb031b591a9d89896be@news.eternal-september.org>
On Tuesday, May 9, 2017 at 5:54:29 AM UTC-4, Wasell wrote:
> On Mon, 8 May 2017 22:15:42 -0700 (PDT), in article <49e1dd7d-4be5-4b03-b9e2-
> e26b15b0a6cb@googlegroups.com>, 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.
>
>
> If I'm not miss-understanding you completely, you want to match a non-
> whitespace, followed either a whitespace or an end-of-line. That would be:
>
> [^[:space:]]\(?:[[:space:]]\|$\)
>
> Am I missing something?
No you're not missing anything. This one is a lot simpler :).
Thank you.
next prev parent reply other threads:[~2017-05-10 14:23 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
2017-05-09 9:54 ` Wasell
2017-05-10 14:23 ` luishenriquezperez [this message]
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=603a9ada-a1ed-4630-bd8c-40504a9e36e6@googlegroups.com \
--to=luishenriquezperez@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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.