I was asked the other day about whether it was possible to split a string value into constituent parts based on a delimiter. The requirement was to split out the original parts of a code into separate line items in a message. e.g. <original_code>xxx/yy... becomes <line_item>xxx</li... <line_item>yyy</li... <line_item>123</li... Richard Seroter blogged about this a while back. You can find his solution here. Also, if...