| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Text to XML/CSV to XML/Tab to XML 2.0 |
windows | Web Development->Web Design Tools | USD 29.95 |
View Detail
|
|||||||||
Text to xml, tab to xml, csv to xml software to convert text, csv, and tab delimited files to xmlEasily convert text/txt, csv, and tab delimited files and txt files into xml files using this text to csv software! You will simply need to choose your source files, specify the destination folder, then convert all the items to XML. |
||||||||||||||
| 2 | XML::DOM::Text 1.44 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
XML::DOM::Text is a piece of XML text in XML::DOM. XML::DOM::Text extends XML::DOM::CharacterData, which extends XML::DOM::Node. The Text interface represents the textual content (termed character data in XML) of an Element or Attr. If there is no markup inside an elements content, the text is contained in a single object implementing the Text interface that is the only child of the element. If there is markup, it is parsed into a list of elements and Text nodes that form the list of children of the element. When a document is first made available via the DOM, there is only one Text node for each block of text. Users may create adjacent Text nodes that represent the contents of a given element without any intervening markup, but should be aware that there is no way to represent the separations between these nodes in XML or HTML, so they will not (in general) persist between DOM editing sessions. The normalize() method on Element merges any such adjacent Text objects into a single node for each block of text; this is recommended before employing operations that depend on a particular document structure, such as navigation with XPointers. METHODS splitText (offset) Breaks this Text node into two Text nodes at the specified offset, keeping both in the tree as siblings. This node then only contains all the content up to the offset point. And a new Text node, which is inserted as the next sibling of this node, contains all the content at and after the offset point. Parameters: offset The offset at which to split, starting from 0. Return Value: The new Text node. DOMExceptions: INDEX_SIZE_ERR Raised if the specified offset is negative or greater than the number of characters in data. NO_MODIFICATION_ALLOWED_ERR Raised if this node is readonly. |
||||||||||||||
| 3 | Text to xml, tab to xml, csv to xml software to convert text,csv, and tab delimited files to xml Software! 9.0 |
windows | Software Development->XML | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | XML From Plain Text 0.03 |
linux | Text Editing&Processing->Markup | Free |
View Detail
|
|||||||||
XML From Plain Text (xfpt) is a program that reads a file of plain text that contains relatively simple markup, and outputs an XML file. It is intended to simplify the management of XML data. The project is not a program that attempts to turn a plain text document into XML. Markup within text is introduced by ampersand characters, but is otherwise "soft". You can define what follows the ampersand, for example, &" to generate a "quote" element. There is also a macro facility that allows for higher level concepts such as chapters, displays, tables, etc. Whats New in This Release: · The macro library has been extended to include preface, appendix, colophon, footnote, figure, and table. · The program has one new directive to enable it to handle "nested" sections such as footnotes. |
||||||||||||||
| 5 | Text to XML Conversion Software 7.0 |
windows | Business Finance->Applications | $19.99 |
View Detail
|
|||||||||
|
||||||||||||||
| 6 | CSV & Text Files to XML Export Software 7.0 |
windows | Business Finance->Office Suites | $19.99 |
View Detail
|
|||||||||
|
||||||||||||||
| 7 | Convert Text or CSV Files to XML Software 7.0 |
windows | Software Development->XML | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 8 | CSV & Text Files to XML Export Software 7.0 |
windows | Web Development->Web Design Tools | $19 |
View Detail
|
|||||||||
Convert CSV and text files into XML files. Comma separated / delimited files may have a header row on the first line. This application is simple to use and provides a few options to control how you want the XML output to appear. Limitations: · nag screen · save function disabled |
||||||||||||||
| 9 | Text::VimColor 0.11 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Text::VimColor is a syntax color text in HTML or XML using Vim. SYNOPSIS use Text::VimColor; my $syntax = Text::VimColor->new( file => $0, filetype => perl, ); print $syntax->html; print $syntax->xml; This module tries to markup text files according to their syntax. It can be used to produce web pages with pretty-printed colourful source code samples. It can produce output in the following formats: HTML Valid XHTML 1.0, with the exact colouring and style left to a CSS stylesheet XML Pieces of text are marked with XML elements in a simple vocabulary, which can be converted to other formats, for example, using XSLT Perl array A simple Perl data structure, so that Perl code can be used to turn it into whatever is needed This module works by running the Vim text editor and getting it to apply its excellent syntax highlighting (aka font-locking) to an input file, and mark pieces of text according to whether it thinks they are comments, keywords, strings, etc. The Perl code then reads back this markup and converts it to the desired output format. This is an object-oriented module. To use it, create an object with the new function (as shown above in the SYNOPSIS) and then call methods to get the markup out. |
||||||||||||||
| 10 | XMLBlueprint XML Editor 5.1 |
windows | Software Development->XML | $119.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 11 | XML::Bare 0.11 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
XML::Bare is a minimal XML parser implemented via a C state engine. SYNOPSIS use XML::Bare; my $xml = new XML::Bare( text => Bob ); # Parse the xml into a hash tree my $root = $xml->parse(); # Print the content of the name node print $root->{xml}->{name}->{value}; # Load xml from a file ( assume same contents as first example ) my $xml2 = new XML::Bare( file => test.xml ); my $root2 = $xml2->parse(); $root2->{xml}->{name}->{value} = Tim; # Save the changes back to the file $xml2->save(); |
||||||||||||||
| 12 | text-vimcolor 0.11 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
text-vimcolor is a command-line program to syntax color a file in HTML, XML or PDF. SYNOPSIS $ text-vimcolor --format html --full-page FILENAME > OUTPUT.html $ text-vimcolor --format xml FILENAME > OUTPUT.xml $ text-vimcolor --format pdf FILENAME --output OUTPUT.pdf This program uses the Vim text editor to highlight text according to its syntax, and turn the highlighting into HTML, XML or PDF output. It works with any file type which Vim itself can highlight. Usually Vim will be able to autodetect the file format based on the filename (and sometimes the contents of the file). Exactly one filename should be given on the command line to name the input file. If none is given input will instead be read from stdin (the standard input). If Vim cant guess the file type automatically, it can be specified explicitly using the --filetype option. For example: $ text-vimcolor --format html --filetype prolog foo.pl > foo.html This program is a command line interface to the Perl module Text::VimColor. OPTIONS The following options are understood: --help Show a summary of the usage, including a list of options. --debug Turns on debugging in the underlying Perl module. This makes it print the command used to run Vim. --filetype file-type Set the type of the file explicitly. The file-type argument should be something which Vim will recognise when set with its filetype option. Examples are perl, cpp (for C++) and sh (for Unix shell scripts). These names are case sensitive, and should usually be all-lowercase. --format output-format The output format to generate. Must be one of the following: html Generate XHTML output, with text marked with elements with class attributes. A CSS stylesheet should be used to define the coloring, etc., for the output. See the --full-page option below. xml Output is in a simple XML vocabulary. This can then be used by other software to do further transformations (e.g., using XSLT). XML output is generated and fed to the FOP XSL-FO processor, with an appropriate XSL style sheet. The stylesheet uses XSLT to transform the normal XML output into XSL-FO, which is then rendered to PDF. For this to work, the command fop must be available. An output file must be specified with --output with this format. Full details of the HTML and XML output formats can be found in the documentation for Text::VimColor. --output output-filename Specifies the name of the output file (which will end up containing either HTML, XML or PDF). If this option is omitted, the output will be sent to stdout (the standard output). This option is required when the output format is PDF (because of limitations in FOP). --full-page When the output format is HTML, this option will make the output a complete HTML page, rather than just a fragment of HTML. A CSS stylesheet will be inserted inline into the output, so the output will be useable as it is. --no-inline-stylesheet When the output format is HTML and --fullpage is given, a stylesheet is normally inserted in-line in the output file. If this option is given it will instead be referenced with a element. --let name=value When Vim is run the value of name will be set to value using Vims let command. More than one of these options can be set. The value is not quoted or escaped in any way, so it can be an expression. These settings take precedence over --unlet options. This option corresponds to the vim_let setting and method in the Perl module. --unlet name Prevent the value of name being set with Vims let command. This can be used to turn off default settings. This option corresponds to the vim_let setting and method in the Perl module, when used with a value of undef. |
||||||||||||||
| 13 | Ghost Text |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 14 | Scroll Text |
script | Java | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 15 | Text Encrypter 1.0 |
windows | Security Privacy->Encrypting | $15.00 |
View Detail
|
|||||||||
|
||||||||||||||
| 16 | Text Encrypter 1.0 |
mac | Security Privacy->Security | $10 |
View Detail
|
|||||||||
Text Encrypter is a powerful text encryption program that may be used to encrypt blocks of arbitrary text or files. Text Encrypter is a tool that uses OpenSSL and RC-4 (128-bit) encryption technology, which is the method primarily used on most secure web sites. Encrypted files will have the .crypt suffix appended to the name. Text and files may be encrypted via password or a numerical sequence and any given numerical sequence my be written to a XML file for future retrieval in encryption or decryption of text and files. Limitations: · nag screen |
||||||||||||||
| 17 | Text Trix |
mac | Word Processing | Free |
View Detail
|
|||||||||
Welcome to Text Trix[tm], the text tinker from Text Flex[tm]! Text Trix is a one-stop tool chest of text tools. Pick from an array of Text Trix "plug-ins," specialized tools that allow you to modify large amounts of text quickly and specifically. The tool chest has its own built-in features to help you organize and navigate through your code or text documents. Whether youre toolin or foolin, were here to make your day. Armed with more and more features in the "text tool chest" and its growing base of plug-ins, or "trix and tools," we hope youll find Text Trix increasingly useful in managing large amounts of text in no time. Lets get installin! Whats New in This Release: · Our v.0.5.1 release of Text Trix is the first bug-cruncher in our new FRIENDS (Family of Really Innovative ENDS) series. Our goal in this series is to get serious about making friends of Text Trix. Were seeking to create a family of plugins that will be a one-stop resource, and "end" to your search for text tools that make your typing easier. Or an "end*s*," cuz with Text Trix, the family keeps growing, and the trix never end! · Of course, to build a family, we need a solid home to house it. This release focuses on crunching a few bugs in Text Trix itself as well as a couple of its plugins. Notable behind-the-scenes fixes include removal of a couple start-up errors you reported on some platforms. The new Song Sheet plugin also has a few tweaks to work with a wider variety of text formatting. · Every house needs an exterminator...but soon well need a decorator! Weve blasted a few bugs here, and now were looking for new decor. If you have ideas for a plugin or would like to write your own, please dont hesitate to post one. We look forward to your joining the family! |
||||||||||||||
| 18 | text counter |
script | ASP->Counters | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 19 | Scrolling text |
script | Flash | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 20 | Text Crossing |
script | Flash | Free |
View Detail
|
|||||||||
|
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
