$input = "abc,defg;hijk|lmnop-qrst_uvwxyz";
// Match multiple separators: comma, semicolon, pipe, dash, underscore
$result = preg_split("/[,\;\|\-_]/", $input);
foreach ($result as $word) {
echo $word . PHP_EOL;
}
/*
run:
abc
defg
hijk
lmnop
qrst
uvwxyz
*/