I want to split a multi-lingual string .
for example for this French-Arabic string :
String texte="aaaa bbbb عععع تتت ccc";
String[] spl=texte.split(' ');
The result must be as below:
aaaa
bbbb
تتت
عععع
ccc
But I have this result:
aaaa
bbbb
عععع
تتت
ccc
PLZ Help me ! thank you