const input = "abc,defg;hijk|lmnop-qrst_uvwxyz";
// Match multiple separators: comma, semicolon, pipe, dash, underscore
const result = input.split(/[,\;\|\-_]/);
result.forEach(word => {
console.log(word);
});
/*
run:
abc
defg
hijk
lmnop
qrst
uvwxyz
*/