The line below splits my string on (.), (,), (:) and newline (\\n) characters.
.
,
:
\\n
String[] textPhrases = text.sp
You have to use:
String[] textPhrases = text.split("[.,:\\-\\n]");