all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Llewelly <llewelly.at@xmission.dot.com>
Subject: Re: regex  support
Date: 28 Apr 2005 21:54:24 -0600	[thread overview]
Message-ID: <867jimp79r.fsf@zorthluthik.foo.bar> (raw)
In-Reply-To: mailman.3375.1114724265.2895.help-gnu-emacs@gnu.org

Ryan Bowman <ryanlbowman@yahoo.com> writes:

> Does emacs support the regex syntax {4} or any of it's
> variants?

Yes. See C-h i g (emacs)Regexps

However you need to put a backslash before the curly braces:

\{4]\} instead of {4}

> I'd like to match a date a la 2005-04-19,
> so I'm trying (for the year part) something like
> "[0-9]{4}", but unless I'm doing something wrong it

"[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}"

should do the trick. Note I used double backslashes (\\) within the
string. If your regex isn't in a string literal use single backslash
(\) .

> doesn't seem to be working.  Assuming it doesn't
> support that, is there a better way to match an string
> of digits of length 4 than "[0-9][0-9][0-9][0-9]"?
[snip]

hm... "[0-9]\\{4\\}" is fewer chars but "[0-9][0-9][0-9][0-9]" is
easier to read ...

       reply	other threads:[~2005-04-29  3:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.3375.1114724265.2895.help-gnu-emacs@gnu.org>
2005-04-29  3:54 ` Llewelly [this message]
2005-04-28 21:29 regex support Ryan Bowman
2005-04-28 22:37 ` Daniel Wright
2005-04-28 22:57 ` Peter Dyballa

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=867jimp79r.fsf@zorthluthik.foo.bar \
    --to=llewelly.at@xmission.dot.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.