Help for this page

Select Code to Download


  1. or download this
    # XML::Smart
    print $sXML->{book}[3]{title};
    
    # XML::LibXML
    print $root->find('book[4]/title');
    
  2. or download this
    # XML::Smart
    my @books = $sXML->{book}('@');
    
    # XML::LibXML
    my @books = $root->findnodes('book');