Text Management scripts - Top 4 Download

Text Management script downloads

Inline PHP API Documentation

Inline PHP API Documentation is an autodocumentor for php. It aims to be for PHP what Javadoc is for Java. ...

Checking whether a string contains a set of chars

This script contains a function to check on the occurence of a set of characters. ...
Python

Accessing Substrings

This script is useful when you want to access portions of a string. For example, you've read a fixed-width record and want to extract the fields. ...
Python

Good enough templating

This script allows you to try a small, powerful templating language using template strings embedded in standard Python syntax. Templates are valid Python source, compiled directly to bytecode. Variable substitution is performed using 'string.Template'. ...
Python

Indent text like email clients

Indent text like email clients script helps you to manage the text identation. ...
Python

Record Jar Parser

This script presents you a method to parse a file like object containing data in the record jar format. ...
Python

Build section numbers for a table of contents

This script shows a way to generate section numbers for a nested document structure. It can be used within a recursive algorithm to build a table of contents. ...
Python

Regular expression point of failure

This script debugs non-matching regular expressions by finding out the maximum parts of the pattern and the text that do match. ...
Python

Expanding and Compressing Tabs

This script is useful when you want to convert tabs in a string to the appropriate number of spaces, or vice versa. ...
Python

Reversing a String by Words or Characters

Reversing a String by Words or Characters script allows you to reverse the characters or words of a string. ...
Python

Missing string functions

Missing string functions script introduces some functions to help you manage international text. ...
Python

OpenOffice to xml and or text

This script converts OpenOffice documents to XML and text. It is useful when you want to index the contents of your documents written with OpenOffice. ...
Python

Design mini lanugage

This script uses Python's superb text handling capability to parse and build the data structure from the input text. ...
Python

PHP Mode for UltraEdit

The goal of this project is to provide a "PHP Mode" (wordlist, taglist, ...) for UltraEdit, which is a commercial text editor on Win32. ...

Smart pluralisation

Smart pluralisation script has a function that provides more intelligence than simply adding an 's' to the end of a word. ...
Python

Extract verbatim texts from LaTeX file

This script extracts contents of all verbatim environments from the LaTeX file specified on command line. Modified LaTeX code with verbatiminput commands instead of verbatim is produced on the standard output. ...
Python

TextWrapper

This script overrides the Python built in function TextWrapper.wrap with an implementation that handles spiltting a document into paragraphs and processing each individually. This allows things such as initial_indent to work as expected. ...
Python

Converting Between Different Naming Convetions

These short functions convert identifier names between the most common naming conventions: CapitalizedWords, mixedCase and under_scores. ...
Python

Align text string

Align text string script aligns string with spaces between words to fit specified width. ...
Python

Searching nested strings

This script searches nested strings from a line of text. The strings are limited by two different characters. ...
Python