I'm trying to use a regex to separate space-separated texts, except for those within quotation marks, for example:
Entrada: texto1 texto2 "texto3 texto4" texto5
Saida: Array("texto1", "texto2", "texto3 texto4", "texto5" );
Entrada: "texto0 t...
asked on
05.03.2018 / 18:50