I'm trying to make a pattern that separates a text if it finds one of the following characters: +, -, x, /,.
I tried with the following code but it does not work, could someone help me?
var texto = "Hol+A q-ue txal e/st.as";
var separador = texto.split(/+|-|x|\//);
console.log(separador)