all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nikolaj Schumacher <me@nschum.de>
To: Seweryn Kokot <sewkokot@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: problem with elisp
Date: Wed, 08 Oct 2008 22:33:50 +0200	[thread overview]
Message-ID: <m2fxn6ltch.fsf@nschum.de> (raw)
In-Reply-To: <8763o2onu6.fsf@poczta.po.opole.pl> (Seweryn Kokot's message of "Wed\, 08 Oct 2008 22\:04\:33 +0200")

Seweryn Kokot <sewkokot@gmail.com> wrote:

> string-temp is changed to 5816MHs and in the end, the last 3 lines do
> nothing.
>
> Any idea how to solve the problem?

You can search for words only:

(re-search-forward (concat "\\b" (regexp-quote string-b) "\\b"))


Or you can give up the temp string and search for both at once like this:

(re-search-forward (concat "\\(" (regexp-quote string-a) "\\)\\|\\("
                           (regexp-quote string-a) "\\)"))

and then replace based on which one was found:

(if (match-beginning 1)
    (replace-match string-b)
  (replace-match string-a))

regards,
Nikolaj Schumacher




  reply	other threads:[~2008-10-08 20:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-08 18:57 problem with elisp Seweryn Kokot
2008-10-08 19:05 ` Nikolaj Schumacher
2008-10-08 20:04   ` Seweryn Kokot
2008-10-08 20:33     ` Nikolaj Schumacher [this message]
2008-10-09 21:23       ` Seweryn Kokot
     [not found] ` <mailman.606.1223492748.25473.help-gnu-emacs@gnu.org>
2008-10-08 19:25   ` Barry Margolin
     [not found] <mailman.604.1223491809.25473.help-gnu-emacs@gnu.org>
2008-10-08 18:59 ` Joost Kremers

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=m2fxn6ltch.fsf@nschum.de \
    --to=me@nschum.de \
    --cc=help-gnu-emacs@gnu.org \
    --cc=sewkokot@gmail.com \
    /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.