Another string tokenizer
I recently did some work on an installer and came across the need to tokenize a list of strings. I first attempted to use the macro as defined here: http://nsis.sourceforge.net/Split_strings which tokenizes strings of the form "string1" "string2" ... "stringN". One problem with the macro is that it doesn't allow your strings to contain spaces. So I wrote a simple function to parse a string based on a delimiter instead. You may want to convert it into a macro, or even optimize it a bit, but I thought it might be useful for someone.