all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Greg Hill <ghill@synergymicro.com>
Subject: Re: capitalize string using regular expressions
Date: Fri, 5 Dec 2003 19:29:35 -0800	[thread overview]
Message-ID: <p06002000bbf6fcc5ec19@[10.1.4.35]> (raw)
In-Reply-To: <3M9Ab.324$vg4.207@nwrdny02.gnilink.net>

At 12:53 AM +0000 12/6/03, colin smith wrote:
>     Does anyone know how I can replace all occurences of  any strings that
>end with ".txt" (lets say "ghjkl.txt" and "xyz.txt") with their uppercase
>equivalents(ie. "GHJKL.txt" and "XYZ.txt").  There must be some way of doing
>this using regular expressions. I've looked extensively through the emacs
>help, but havent been able to figure it out.

(while (re-search-forward "\\W\\(\\w+\\)\\.txt\\W" nil t)
     (replace-match (upcase (match-string-no-properties 1))
		   nil nil nil 1)))

--Greg

  parent reply	other threads:[~2003-12-06  3:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-12-06  0:53 capitalize string using regular expressions colin smith
2003-12-06  2:19 ` Tim Heaney
2003-12-06  3:29 ` Greg Hill [this message]
2003-12-06  4:29 ` Pascal Bourguignon

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='p06002000bbf6fcc5ec19@[10.1.4.35]' \
    --to=ghill@synergymicro.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.