1XML::Stream::Tree(3)  User Contributed Perl Documentation XML::Stream::Tree(3)
2
3
4

NAME

6       XML::Stream::Tree - Functions to make building and parsing the tree
7       easier to work with.
8

SYNOPSIS

10         Just a collection of functions that do not need to be in memory if you
11       choose one of the other methods of data storage.
12

FORMAT

14       The result of parsing:
15
16         <foo><head id="a">Hello <em>there</em></head><bar>Howdy<ref/></bar>do</foo>
17
18       would be:
19                Tag   Content
20         ==================================================================
21         [foo, [{},
22                head, [{id => "a"},
23                       0, "Hello ",
24                       em, [{},
25                            0, "there"
26                           ]
27                      ],
28                bar, [{},
29                      0, "Howdy",
30                      ref, [{}]
31                     ],
32                0, "do"
33               ]
34         ]
35
36       The above was copied from the XML::Parser man page.  Many thanks to
37       Larry and Clark.
38

AUTHOR

40       By Ryan Eatmon in March 2001 for http://jabber.org/
41
42       Currently maintained by Darian Anthony Patrick.
43
45       Copyright (C) 1998-2004 Jabber Software Foundation http://jabber.org/
46
47       This module licensed under the LGPL, version 2.1.
48
49
50
51perl v5.30.0                      2019-07-26              XML::Stream::Tree(3)
Impressum