unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Tim X <timx@nospam.dev.null>
To: help-gnu-emacs@gnu.org
Subject: Re: elispQ: How can I extract text from #("text" ... )
Date: Sat, 05 Apr 2008 14:30:31 +1100	[thread overview]
Message-ID: <87y77tyo4o.fsf@lion.rapttech.com.au> (raw)
In-Reply-To: ccd0f707-6bc1-4147-9109-1e34f7155226@k13g2000hse.googlegroups.com

Mirko <mvukovic@nycap.rr.com> writes:

> Hi,
>
> I am parsing an xml file using xml.el, and I am getting for attributes
> values such as:
>  #("Typically only electric field is assigned" 0 41 (face font-lock-
> string-face fontified t)))
>
> Now, these are variables of type string. How can I extract just the
> text from it?
>

I'm not sure I understand what your trying to do. The result you are
getting looks like an elisp list structure to me. You should be able to
extract what you want using car, cdr and friends. 

e.g 

(setq my-var ("Typically only electric field is assigned" 0 41 (face font-lock-
string-face fontified t)))

(car my-var)
 => "Typically only electric field is assigned"

(cdr my-var)
  => (0 41 (face font-lock-string-face fontified t))

etc

Tim

-- 
tcross (at) rapttech dot com dot au


      parent reply	other threads:[~2008-04-05  3:30 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-04  2:04 elispQ: How can I extract text from #("text" ... ) Mirko
2008-04-04  4:14 ` Drew Adams
     [not found] ` <mailman.9966.1207282652.18990.help-gnu-emacs@gnu.org>
2008-04-04 11:00   ` Mirko
2008-04-04 14:11     ` Drew Adams
     [not found]     ` <mailman.9985.1207318373.18990.help-gnu-emacs@gnu.org>
2008-04-04 15:24       ` Mirko
2008-04-04 15:57         ` Drew Adams
     [not found]         ` <mailman.9990.1207324736.18990.help-gnu-emacs@gnu.org>
2008-04-04 17:15           ` Mirko
2008-04-04 18:28             ` Drew Adams
2008-04-05 15:45               ` Eli Zaretskii
     [not found]               ` <mailman.10042.1207410333.18990.help-gnu-emacs@gnu.org>
2008-05-04  1:28                 ` David Combs
2008-05-04  4:10                   ` Eli Zaretskii
2008-05-05 14:17                   ` Joel J. Adamson
     [not found]             ` <mailman.9998.1207333808.18990.help-gnu-emacs@gnu.org>
2008-04-05  1:16               ` Mirko
2008-04-05  3:30 ` Tim X [this message]

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=87y77tyo4o.fsf@lion.rapttech.com.au \
    --to=timx@nospam.dev.null \
    --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).