<?php

$text = "Привет,мир,труд, май,трудомай";

$regexp = '/(,[^,\\s]+)+/u';

if (preg_match($regexp, $text, $matches)){
	echo "Нашлось:\n";
	var_dump($matches);
} else {
	echo 'Не нашлось';
}