From: Xah <xahlee@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Regex Problem
Date: Sun, 20 Jul 2008 00:48:36 -0700 (PDT) [thread overview]
Message-ID: <b93fdb9c-8db7-4041-8393-fa5bf2e80f23@w39g2000prb.googlegroups.com> (raw)
In-Reply-To: mailman.15059.1216536041.18990.help-gnu-emacs@gnu.org
On Jul 19, 10:50 am, travis jeffery <eatsleepg...@gmail.com> wrote:
> I'm trying to write and extension for using tumbr. In tumblr there are two
> requirements for a post; title and body.
>
> So I set up a tumblr post document as:
> title:
> body:
>
> So get the title I use (string-match "\\title: \(.*\)\$"), which is fine
> because it's on a single line. But with I'm having trouble getting the body
> because it's multiple lines. So is there someway I can get any text
> following the body:_space_? I was thinking also of saving the entire buffer
> and then subtracting the title: TITLE and body:_space_ but I still don't
> know about that.
>
> Thanks for your help.
to get text out of the “body:”, you can do something like this:
(goto-char 1)
(search-forward "body:")
(setq mytext (buffer-substring-no-properties (point) (1+ (buffer-
size))))
for some basic elisp functions, see
http://xahlee.org/emacs/elisp_common_functions.html
Xah
∑ http://xahlee.org/
☄
next parent reply other threads:[~2008-07-20 7:48 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <mailman.15059.1216536041.18990.help-gnu-emacs@gnu.org>
2008-07-20 7:48 ` Xah [this message]
2008-07-21 16:23 ` Regex Problem John Paul Wallington
2008-07-21 21:47 ` Thr4wn
2008-07-22 12:29 ` Nikolaj Schumacher
[not found] ` <mailman.15163.1216729783.18990.help-gnu-emacs@gnu.org>
2008-07-23 19:30 ` Thr4wn
2008-07-23 19:57 ` Drew Adams
2008-07-23 22:36 ` Bernardo Bacic
2008-07-23 22:43 ` Drew Adams
2008-07-24 11:18 ` Nikolaj Schumacher
2008-07-19 17:50 travis jeffery
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=b93fdb9c-8db7-4041-8393-fa5bf2e80f23@w39g2000prb.googlegroups.com \
--to=xahlee@gmail.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.