Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.338.414 Times

Parse Xml freeware
Filter: All | Freeware | Demo
 

Parse Xml

1 2 3 4 5 > 
Added: May 09, 2010 | Visits: 1.022

XML::Rules XML::Rules is a Perl module that can parse XML & process tags by rules starting from leaves. SYNOPSIS use XML::Rules; $xml = < < *END* < doc > < person > < fname >...< /fname > < lname >...< /lname > < email >...< /email > < address > < street >...< /street > < city >...< /city > <...



Platforms: *nix

License: Freeware Size: 38.91 KB Download (99): XML::Rules Download

Added: April 20, 2010 | Visits: 1.044

XML::LibXML::Parser XML::LibXML::Parser is a Perl module to parse XML Data with XML::LibXML. SYNOPSIS $parser = XML::LibXML->new(); $doc = $parser->parse_file( $xmlfilename ); $doc = $parser->parse_fh( $io_fh ); $doc = $parser->parse_string( $xmlstring); $doc = $parser->parse_html_file( $htmlfile, %opts );...





Platforms: *nix

License: Freeware Size: 256 KB Download (106): XML::LibXML::Parser Download

Added: January 07, 2010 | Visits: 1.020

XML::DOM::Lite::XSLT [COPYRIGHT] SYNOPSIS use XML::DOM::Lite qw(Parser XSLT); $parser = Parser->new( whitespace => strip ); $xsldoc = $parser->parse($xsl); $xmldoc = $parser->parse($xml); $output = XSLT->process($xmldoc, $xsldoc);.


Platforms: *nix

License: Freeware Size: 31.74 KB Download (97): XML::DOM::Lite::XSLT Download

Added: May 10, 2013 | Visits: 528

Sax Filters This is a set of classes implementing SAX filters, the classes include a SAX class to parse XML documents using Expat and defines a way to create SAX filters to perform SAX- based queries, updates and transformations of documents. Simple filters can be chained to construct augmented complex XML...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (57): Sax Filters Download

Released: June 22, 2012  |  Added: June 22, 2012 | Visits: 270

XMLObject Python Module XMLObject gives you an easy way to parse XML into Python objects. The objects created by XMLObject are far easier to manipulate than those made by xml.dom. This project also includes a GUI application, XMLObjApp, to generate XML parsers for you.


Platforms: Windows, Mac, Linux

License: Freeware Size: 335.92 KB Download (48): XMLObject Python Module Download

Released: November 02, 2012  |  Added: November 02, 2012 | Visits: 542

XML Parse Lib XML Parse Lib is a handy, simple set of re-usable functions designed for general purpose parsing, checking, and creating xml files. It can support stream-oriented, SAX or DOM parsing styles, and includes an optional xsd schema validator and graphical schema generator. This component also...


Platforms: Windows

License: Freeware Download (48): XML Parse Lib Download

Added: June 05, 2010 | Visits: 1.115

XML::Checker::Parser XML::Checker::Parser is an XML::Parser that validates at parse time. SYNOPSIS use XML::Checker::Parser; my %expat_options = (KeepCDATA => 1, Handlers => [ Unparsed => &my_Unparsed_handler ]); my $parser = new XML::Checker::Parser (%expat_options); eval { local $XML::Checker::FAIL =...


Platforms: *nix

License: Freeware Size: 368.64 KB Download (104): XML::Checker::Parser Download

Added: January 18, 2010 | Visits: 939

XML::DocStats XML::DocStats is a Perl module to produce a simple analysis of an XML document. SYNOPSIS Analyze the xml document on STDIN, the STDOUT output format is html: use XML::DocStats; my $parse = XML::DocStats->new; $parse->analyze; Analyze in-memory xml document: use XML::DocStats; my...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (88): XML::DocStats Download

Added: November 24, 2010 | Visits: 871

XML::Parser XML::Parser is a perl module for parsing XML documents. SYNOPSIS use XML::Parser; $p1 = new XML::Parser(Style => Debug); $p1->parsefile(REC-xml-19980210.xml); $p1->parse( Hello World ); # Alternative $p2 = new XML::Parser(Handlers => {Start => &handle_start, End => &handle_end,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (98): XML::Parser Download

Added: May 10, 2013 | Visits: 518

Feedme XML 5.x-1.1 Unlike Aggregator or other RSS/ATOM feed parsers, this module is for custom XML files instead of RSS. The module can however parse RSS/ATOM feeds too, but there are other modules that implement this functionality better.InstallationUnpack in your modules folder (usually /sites/all/modules/) and...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (50): Feedme XML 5.x-1.1 Download

Added: June 17, 2010 | Visits: 971

XML::DOM::XML_Base XML::DOM::XML_Base Perl module can apply xml:base to attribute values. SYNOPSIS use XML::DOM::XML_Base; my $parser = XML::DOM::Parser->new(); my $xml = qq( ); # build the DOM my $dom = $parser->parse( $xml ); # get some elements my $endo = $dom->getElementsByTagName(...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (95): XML::DOM::XML_Base Download

Added: July 13, 2010 | Visits: 2.075

XML::Parser::YahooRESTGeocode SYNOPPSIS use LWP::Simple use XML::Parser; use XML::Parser::YahooRESTGeocode; #connect to yahoo geocode service my $url = http://api.local.yahoo.com/MapsService/V1/geocode; my $get = appid=YahooDemo&street=701+First+Street&city=Sunnyvale&state=CA; #call yahoo geocode service my $xml =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (116): XML::Parser::YahooRESTGeocode Download

Added: September 24, 2010 | Visits: 974

Template::Plugin::XML::DOM Template::Plugin::XML::DOM is a plugin interface to XML::DOM. SYNOPSIS # load plugin [% USE dom = XML.DOM %] # also provide XML::Parser options [% USE dom = XML.DOM(ProtocolEncoding = ISO-8859-1) %] # parse an XML file [% doc = dom.parse(filename) %] [% doc = dom.parse(file =...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (99): Template::Plugin::XML::DOM Download

Added: April 11, 2010 | Visits: 734

XML::SimpleObject XML::SimpleObject is a Perl extension allowing a simple object representation of a parsed XML::Parser tree. SYNOPSIS use XML::SimpleObject; # Construct with the key/value pairs as argument; this will create its # own XML::Parser object. my $xmlobj = new XML::SimpleObject(XML => $XML,...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (93): XML::SimpleObject Download

Added: May 13, 2010 | Visits: 1.143

XML::DOM::Lite XML::DOM::Lite is a Lite Pure Perl XML DOM Parser Kit. SYNOPSIS # Parser use XML::DOM::Lite qw(Parser :constants); $parser = Parser->new( %options ); $doc = Parser->parse($xmlstr); $doc = Parser->parseFile(/path/to/file.xml); # strip whitespace (can be about 30% faster) $doc =...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (97): XML::DOM::Lite Download

Added: January 25, 2010 | Visits: 571

XML Tools XML Tools AppleScript Scripting Addition allows AppleScript to parse and generate XML data. XML Tools's parsing can generate a complete DOM-like structure or it can operate in a SAX-like event handling mode.


Platforms: Mac

License: Freeware Download (89): XML Tools Download

Released: August 16, 2012  |  Added: August 16, 2012 | Visits: 504

FUNDAMENTALS XML FUNDAMENTALS XML was specially developed as a Delphi / FreePascal unit that can implement a XML parser and XML document objects. Now you can use this accessible and handy library to further improve your development process.


Platforms: Windows

License: Freeware Download (46): FUNDAMENTALS XML Download

Released: July 17, 2012  |  Added: July 17, 2012 | Visits: 651

Chilkat XML C++ Library Chilkat XML C++ Library is a high-level non-validating XML parser component that is free for both commercial and non-commercial use. Give Chilkat XML C++ Library a try to see what it's all about!


Platforms: Windows

License: Freeware Download (45): Chilkat XML C++ Library Download

Added: May 10, 2013 | Visits: 419

XML-RPC Client for ActionScript XML-RPC is a standard that was developed for calling remote procedures, usually over homepage that can return data to the client.It's a spec and a set of implementations that allow software running on disparate operating systems, running in different environments to make procedure calls over the...


Platforms: Windows, Flash,

License: Freeware Download (59): XML-RPC Client for ActionScript Download

Released: July 12, 2012  |  Added: July 12, 2012 | Visits: 344

XML Worker XMLWorker was specially designed as an accessible extra component for iText. The first XML to PDF implementation, is a new version of the old HTMLWorker that used to be shipped with iText. Use this handy component to help you with your work.


Platforms: Windows

License: Freeware Download (43): XML Worker Download

1 2 3 4 5 >