Overview

A number of utility tags. See the tags for more information.

Tips

If you would like to use the tokenize tag and tokenize on whitespace, you may think you could use a delimiter of \n or \t etc, but those character strings are specific to Java, not XML.

Randy Xu came up with a workaround, using XML unicode entities, e.g. &#xA, &#xD, &#x9, &x20 for line feed, carriage return, tab and space respectively.