Tools
Regular Expression
When you want to search and replace chunks of texts in “patterns” (e.g. all HTML/XML tags are in < >), Regular Expression (regex or regexp in short) comes in handy. Regular Expression is a set of rules for matching a string of texts in a specified pattern. Here is an example for removing HTML tags (the pattern matches any text in < > including the brackets, and removes all the matches):
/<(.|n)*?>//g
Regex pattern is placed between slashes (as in /SEARCH_PATTERN/REPLACE_PATTERN/) and an optional flag is placed after the last /. In this example, /g means global match, i.e. find all possible matches in the source text. The pattern <(.|n)*?> means 0 or more instances of any character (including new lines) enclosed by < >. When you do a search and replace using regex, you can use this pattern in search and leave the replace blank in order to strip out all the tags from your text. You can find more regex examples of stripping out HTML/XML tags here. Also, google “strip tags regular expression” for more examples.
Regex resources
- Regular expression examples on Wikipedia
- Regular expressions cheat sheet: One-page quick reference guide in PDF and image(PNG) for free download (Creative Commons license).
- Regex reference in Perl programming language: Perl is a popular programming language for text processing, and regex is the central part of it. Please note that different programming langues use different regex engines, so check your language or software’s engine and its reference before you write a complex regex pattern (see the regex engine comparisons on Wikipedia and here).
- Regular expression in Python: Regex reference guide for Python. Here is a web-based Python regex testing tool.
Text processing on Desktop
Below is a list of desktop software (Windows/Mac and some Linux) that you can use to pre-process texts. You should prepare your texts in plain text files (.txt) first, not Word .doc or Adobe .pdf files. Make sure to keep a copy of all original files elsewhere before you make changes to them.
- Text batch processing (Find and replace, regular expression support): Use these programs to search/replace/remove texts from your texts. Batch processing software makes it easy to process multiple texts (e.g. strip out all tags in all files in a particular directory).
- TextCrawler (freeware, Windows): Find and replace words and phrases across multiple files and folders, create Regular Expressions (comes with a built-in regular expression tester so that you can test your patterns on a sample text before modifying your files), perform batch operations (process multiple files at once), and more.
- Here is a link to some other text batch processing tools. This linked article is a bit outdated (circa 2009), but the list is still very useful. There are some Mac utilities as well.
- Character encoding conversion:
- Compare files and/or folders and merge differences (Visual “diff” and merge tools): These are useful when you want to compare the original with the modified texts and check the changes made visually, side-by-side.
- WinMerge (freeware, Windows): Compare both files and folders, check the differences visually, and merge them.
- Meld (freeware, Linux): Visual diff/merge tool for Linux desktop users.
- DiffMerge (freeware, Windows/Mac/Linux): Like WinMerge, but cross-platform. Check its homepage for a very detailed pdf manual.
- Misc:
- For those of you on Linux/Unix command-line (Bash shell): Text Processing Commands, File and Archiving Commands (in Advanced Bash-Scripting Guide) (To learn which shell you are on, use “echo $SHELL” or “ps -p $$” commands.)