From: Emanuel Berg <moasen@zoho.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Negative Lookahead Equivalent in emacs
Date: Tue, 09 May 2017 09:16:15 +0200 [thread overview]
Message-ID: <yw.86o9v2pkjk.fsf@zoho.com> (raw)
In-Reply-To: 49e1dd7d-4be5-4b03-b9e2-e26b15b0a6cb@googlegroups.com
> 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
I would probably use syntax classes [1] for
this, with numbered groups, as in this Elisp.
Regexps are hairy tho so some fiddling and
fine-tuning is expected:
(when (re-search-forward
"\\([[:graph:]]\\)[ \n]" (point-max) t)
(goto-char (match-beginning 0))
(message (match-string-no-properties 1)) )
Hello World!
[1] https://www.emacswiki.org/emacs/RegularExpression
--
underground experts united
http://user.it.uu.se/~embe8573
next prev parent reply other threads:[~2017-05-09 7:16 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 [this message]
2017-05-09 8:44 ` hector
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=yw.86o9v2pkjk.fsf@zoho.com \
--to=moasen@zoho.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.