From: Emanuel Berg <incal@dataswamp.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Select/highlight and *copy* matches of some regex
Date: Tue, 28 Jun 2022 21:52:13 +0200 [thread overview]
Message-ID: <87v8skd0r6.fsf@dataswamp.org> (raw)
In-Reply-To: 87fsjpxuwy.fsf@gmail.com
Visuwesh wrote:
> I wonder if you can use C-u M-s o for the job. I did C-u M-s
> o lang=.. then it produced a buffer with the contents
>
> lang=en
> lang=de
> lang=fr
> lang=pt
(require 'cl-lib)
(cl-loop
while (re-search-forward "lang=\\([[:alnum:]]*\\)" (point-max) t)
with hits = ()
do (push (match-string-no-properties 1) hits)
finally return
(sort (cl-delete-duplicates hits :test #'string=) #'string<) )
;; blah blah lang=en bla
;; lang=de
;; lang=fr blah blah
;; blah lang=pt
;; blah blah lang=en bla
;; lang=de
;; lang=fr blah blah
;; blah lang=pt
;; result: ("de" "en" "fr" "pt")
--
underground experts united
https://dataswamp.org/~incal
next prev parent reply other threads:[~2022-06-28 19:52 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-27 15:52 Select/highlight and *copy* matches of some regex Joost
2022-06-27 16:12 ` tomas
2022-06-27 17:16 ` Joost
2022-06-27 17:44 ` tomas
2022-06-28 4:40 ` Visuwesh
2022-06-28 19:52 ` Emanuel Berg [this message]
2022-06-29 21:40 ` Joost Kremers
2022-06-30 6:05 ` Emanuel Berg
2022-06-28 9:29 ` Daniel Martín
2022-06-28 10:33 ` tomas
2022-06-27 20:56 ` Stephen Berman
2022-06-27 21:09 ` Joost Kremers
2022-06-27 22:26 ` Emanuel Berg
2022-06-27 22:29 ` Emanuel Berg
2022-06-27 22:41 ` Emanuel Berg
2022-06-27 23:11 ` DWIM interface (was: Re: Select/highlight and *copy* matches of some regex) Emanuel Berg
2022-06-27 22:44 ` Select/highlight and *copy* matches of some regex Emanuel Berg
2022-06-28 4:43 ` tomas
2022-06-28 5:37 ` Emanuel Berg
2022-06-28 4:42 ` tomas
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=87v8skd0r6.fsf@dataswamp.org \
--to=incal@dataswamp.org \
--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).