parser
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 268
Parser 1.3
Parser v1.3 allows to use Addict 2.xx with RichViewEdit and DBRichViewEdit more>>
Parser v1.3 allows to use Addict 2.xx with DBRichViewEdit and RichViewEdit.
This version of parser and demo is also included in installation of Addict v2.4. It also skips Unicode text (and text with SYMBOL_CHARSET).
<<lessThis version of parser and demo is also included in installation of Addict v2.4. It also skips Unicode text (and text with SYMBOL_CHARSET).
Download (11.6KB)
Added: 2006-11-26 License: Freeware Price:
1103 downloads

Pix Parser 1
Pix Parser is a program which can parse Cisco Pix log files to search any search term specified. more>> <<less
Download (309.8KB)
Added: 2006-12-18 License: Freeware Price: $0.00
downloads
Other version of Pix Parser
License:Freeware
DTS Parser 2.0
This tools is able to reconstruct any DTS file (even truncated) applying some modifications more>>
This tools is able to reconstruct any DTS file (even truncated) applying some modifications DTS Parser is a simple, easy-to-use, smart tool that is able to reconstruct any DTS file (even truncated) applying some modifications like:
- remove Dialog Normalisation
- remove CRC
Most of DTS formats can be recognized:
- DTS
- DTS ES Discrete
- DTS ES Matrix
- DTS 24/96
- 14 bits DTS from Audio CD (aka. DTSWAV)
<<less- remove Dialog Normalisation
- remove CRC
Most of DTS formats can be recognized:
- DTS
- DTS ES Discrete
- DTS ES Matrix
- DTS 24/96
- 14 bits DTS from Audio CD (aka. DTSWAV)
Download (312KB)
Added: 2007-07-30 License: Freeware Price:
979 downloads
Download (info)
Added: 2008-10-28 License: Freeware Price:
364 downloads
MPEG Parser 1.3
MPEG Parser is the program for viewing of internal structure of MPEG-files more>>
MPEG Parser is a utility that shows you the structure of a MPEG file.
MPEG Parser is the viewer of MPEG-files internal structure. It can view fields of structures of what the MPEG file consists.
MPEG Parser shows next data about MPEG file: Resolution, Frame rate, Size, Aspect ratio, Bitrate ... Utility allows to correct errors in MPEG - use menu item "Save corrected..." for this. You can also save internal structure in the text file via menu item "Save MPEG information...".
<<lessMPEG Parser is the viewer of MPEG-files internal structure. It can view fields of structures of what the MPEG file consists.
MPEG Parser shows next data about MPEG file: Resolution, Frame rate, Size, Aspect ratio, Bitrate ... Utility allows to correct errors in MPEG - use menu item "Save corrected..." for this. You can also save internal structure in the text file via menu item "Save MPEG information...".
Download (288KB)
Added: 2006-06-30 License: Freeware Price:
1216 downloads
Other version of MPEG Parser
Price: $0.00
License:Freeware
License:Freeware
Java Parser 1.0
This is Java Class File Parser program that can Parse any Class file to .Java File. more>>
This is Java Class File Parser program that can Parse any Class file to .Java File. Java Parser application was designed to parse the Java Class File to give you the Java Code in .Java file To Parse the File Right Click on Any file and Click Parse.
If you dont see Parse in Right Click menu just run Application once and you can get it.
<<lessIf you dont see Parse in Right Click menu just run Application once and you can get it.
Download (215KB)
Added: 2007-11-27 License: Freeware Price:
696 downloads
HTML Parser 1.6
A Java library used to parse HTML in either a linear or nested fashion more>>
A Java library used to parse HTML in either a linear or nested fashion Primarily used for transformation or extraction, it features filters, custom tags, visitors, and easy to use JavaBeans. HTML Parser is a robust, fast, and well tested package.
Welcome to the homepage of HTMLParser - a super-fast real-time parser for real-world HTML. What has attracted most developers to HTMLParser has been its simplicity in design, speed and ability to handle streaming real-world html.
The two fundamental use-cases that are handled by the parser are extraction and transformation (the syntheses use-case, where HTML pages are created from scratch, is better handled by other tools closer to the source of data).
In general, to use the HTMLParser you will need to be able to write code in the Java programming language. Although some example programs are provided that may be useful as they stand, its more than likely you will need (or want) to create your own programs or modify the ones provided to match your intended application.
To use the library, you will need to add either the htmllexer.jar or htmlparser.jar to your classpath when compiling and running. The htmllexer.jar provides low level access to generic string, remark and tag nodes on the page in a linear, flat, sequential manner.
The htmlparser.jar, which includes the classes found in htmllexer.jar, provides access to a page as a sequence of nested differentiated tags containing string, remark and other tag nodes.
Extraction
Extraction encompasses all the information retrieval programs that are not meant to preserve the source page.
This covers uses like:
- text extraction, for use as input for text search engine databases for example
- link extraction, for crawling through web pages or harvesting email addresses
- screen scraping, for programmatic data input from web pages
- resource extraction, collecting images or sound
- a browser front end, the preliminary stage of page display
- link checking, ensuring links are valid
- site monitoring, checking for page differences beyond simplistic diffs
There are several facilities in the HTMLParser codebase to help with extraction, including filters, visitors and JavaBeans.
Transformation
Transformation includes all processing where the input and the output are HTML pages.
Some examples are:
- URL rewriting, modifying some or all links on a page
- site capture, moving content from the web to local disk
- censorship, removing offending words and phrases from pages
- HTML cleanup, correcting erroneous pages
- ad removal, excising URLs referencing advertising
- conversion to XML, moving existing web pages to XML
During or after reading in a page, operations on the nodes can accomplish many transformation tasks "in place", which can then be output with the toHtml() method. Depending on the purpose of your application, you will probably want to look into node decorators, visitors, or custom tags in conjunction with the PrototypicalNodeFactory.
<<lessWelcome to the homepage of HTMLParser - a super-fast real-time parser for real-world HTML. What has attracted most developers to HTMLParser has been its simplicity in design, speed and ability to handle streaming real-world html.
The two fundamental use-cases that are handled by the parser are extraction and transformation (the syntheses use-case, where HTML pages are created from scratch, is better handled by other tools closer to the source of data).
In general, to use the HTMLParser you will need to be able to write code in the Java programming language. Although some example programs are provided that may be useful as they stand, its more than likely you will need (or want) to create your own programs or modify the ones provided to match your intended application.
To use the library, you will need to add either the htmllexer.jar or htmlparser.jar to your classpath when compiling and running. The htmllexer.jar provides low level access to generic string, remark and tag nodes on the page in a linear, flat, sequential manner.
The htmlparser.jar, which includes the classes found in htmllexer.jar, provides access to a page as a sequence of nested differentiated tags containing string, remark and other tag nodes.
Extraction
Extraction encompasses all the information retrieval programs that are not meant to preserve the source page.
This covers uses like:
- text extraction, for use as input for text search engine databases for example
- link extraction, for crawling through web pages or harvesting email addresses
- screen scraping, for programmatic data input from web pages
- resource extraction, collecting images or sound
- a browser front end, the preliminary stage of page display
- link checking, ensuring links are valid
- site monitoring, checking for page differences beyond simplistic diffs
There are several facilities in the HTMLParser codebase to help with extraction, including filters, visitors and JavaBeans.
Transformation
Transformation includes all processing where the input and the output are HTML pages.
Some examples are:
- URL rewriting, modifying some or all links on a page
- site capture, moving content from the web to local disk
- censorship, removing offending words and phrases from pages
- HTML cleanup, correcting erroneous pages
- ad removal, excising URLs referencing advertising
- conversion to XML, moving existing web pages to XML
During or after reading in a page, operations on the nodes can accomplish many transformation tasks "in place", which can then be output with the toHtml() method. Depending on the purpose of your application, you will probably want to look into node decorators, visitors, or custom tags in conjunction with the PrototypicalNodeFactory.
Download (4.14MB)
Added: 2007-08-24 License: GPL Price:
511 downloads
Other version of HTML Parser
License:Freeware

Type Parser 1.1
This utility is used to get information on the usage of your drive, by grouping similar extensions and showing how they are distributed on your hard disk. This is a completely different kind of analys more>>
This utility is used to get information on the usage of your drive, by grouping similar extensions and showing how they are distributed on your hard disk. This is a completely different kind of analysis that you have seen! So you can discover forgotten files and then decide if they are worth existing... Also good to get detailed information on users files on small networks. Results can be exported to the clipboard (for Excel, Word, printing etc.) For more advanced users!
<<less Download (389K)
Added: 2000-10-09 License: Freeware Price:
3306 downloads
Mathparser 1.0
Mathparser is a .NET assembly which contains a math parser written in C# more>>
Mathparser is a .NET assembly which contains a math parser developed in C# and will evaluate a mathematical expression and returns a double value.
<<less Download (74KB)
Added: 2006-10-03 License: Freeware Price:
1125 downloads
HashParser 0.0
HashParser is regarded as a simple yet effective style sheet and DTD-free XML parser/unparser package. more>>
HashParser 0.0 is regarded as a simple yet effective style sheet and DTD-free XML parser/unparser package. Release date 05.05.05.
The Perl hashparser.pm package consists of two functions: PARSER and UNPARSER. PARSER converts XML file into a hash structure, UNPARSER does the opposite. See manual in the listing.
Requirements: Windows 98/NT/XP
Download (9.8KB)
Added: 2005-06-02 License: Freeware Price:
downloads

SNMP MIB Parser 1.3
show users the capabilities of the SNMP MIB Parser Library more>> This FREE application will show users the capabilities of the SNMP MIB Parser Library sold by our company. The program will allow you to open standard MIB files, and display the information for the OIDs contained therein. The FULL version of the application allows you to save off the data into a text file.<<less
Download (970KB)
Added: 2008-08-04 License: Freeware Price: Free
386 downloads
HTML Movie Parser 1
HTML Movie Parser retrieve movie to save it for you. more>> HTML Movie Parser retrieve movie to save it for you. By sifting through the source code of a Web page this application will identify code that applies to a video link. From there it will isolate the link and open it up therefore giving you the opportunity to save the video at any file location. It works great if you frequently visit message boards and would like to save videos without having to sift through your Internet cache.<<less
Download (151KB)
Added: 2008-08-17 License: Freeware Price: Free
507 downloads
Other version of HTML Movie Parser
License:Freeware
WER HTML Parser 1.01
Will read and analyze HTML files more>> Will read and analyze HTML files
The WER HTML Parser application was designed to read and analyze HTML files, and represent them in a tree-view form, where each node is a HTML element, and embedded elements are displayed as children of their parent HTML element. Very useful if you want to check your site for errors, or if you want to understand the structure of a page.
<<less Download (244KB)
Added: 2008-09-30 License: Freeware Price: FREE
391 downloads

Log Parser Lizard 1.9
Log Parser Lizard is a free GUI for MS Log Parser, a powerful engine for query access to text based data, such as log files, XML files, and CSV files, as well as the event log, IIS log, the registry, the file system, and the Active Directory, etc... more>>
Log Parser is a very powerful, free and versatile tool that provides universal query access to text based data, such as log files, XML files, and CSV files, as well as key data sources on the Microsoft Windows operating system, such as the event log, IIS log, the registry, the file system, and the Active Directory directory service. Becouse the command line interface is not very intuitive, I have created Log Parser Lizard, a GUI tool for managing queries, exporting results to Excel, charts, etc... In addition it provides input filters for log4net file format (with support for regular expressions) and SQL server T SQL queries.
System Requirements: MS Log Parser 2.2, .Net Framework 2.0
<<less Download (9.92MB)
Added: 2009-11-15 License: Freeware Price:
downloads
Other version of Log Parser Lizard
License:Freeware
Mork Format Parser 1.0
An efficient C++ implementation of Mork database format reader. more>>
An efficient C++ implementation of Mork database format reader. MorkParser was designed to be an efficient C++ implementation of Mork database format reader.
It is dependant on Trolltech Qt, but this dependency can be easily removed.
<<lessIt is dependant on Trolltech Qt, but this dependency can be easily removed.
Download (22KB)
Added: 2007-10-19 License: Freeware Price:
802 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above parser search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed