//Java: RegEx: Splitting a space-, comma-, and semi-colon separated list
// Greedy RegEx quantifier used
// X+ = X, one or more times
// [\\s,;]+ = one or more times of either \s , or ;
String test_data = "hello world, this is a test, ;again";
_logger.debug("Source: " + test_data);
for (String tag : test_data.split("[\\s,;]+"))
{
_logger.debug("Received tag: [" + tag + "]");
}