From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,XPRIO, XPRIO_SHORT_SUBJ autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,4186ab0bee49bce9,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-26 07:55:49 PST From: "Andy Ingram" Newsgroups: comp.lang.ada Subject: XML ada Date: Wed, 26 Mar 2003 15:57:47 -0000 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 NNTP-Posting-Host: ppp-225-13-132.friaco.access.uk.tiscali.com Message-ID: <3e81cd83$1_1@mk-nntp-1.news.uk.worldonline.com> X-Trace: 26 Mar 2003 15:55:47 GMT, ppp-225-13-132.friaco.access.uk.tiscali.com Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!kibo.news.demon.net!demon!mk-nntp-1.news.uk.worldonline.com!ppp-225-13-132.friaco.access.uk.tiscali.com Xref: archiver1.google.com comp.lang.ada:35729 Date: 2003-03-26T15:57:47+00:00 List-Id: I have just started using XML/Ada. I have been playing around and have managed to get to grips with nodes and node lists to get a 'list' of elements with the same tag. However i am now trying to get the data within these tags. I am attempting this by using DOM.Core.Character_Datas.Data and passing it a node (obtained from my nodelist). This returns a DOM String. How do i then use this DOM String as a 'normal' string? I.e how do i output this to the display or store it in a string for later use? EG. below, i want to output all the values of 'name', ie.. *** bob bill *** bob ... ... bill ... ... Thanks for any help Darren