I want to split a Hindi paragraph into sentences. Each sentence is separated by '|' . I tried the following code :
String[] translated_values=text.split("|");
Sample text :
मनोवैज्ञानिक परीक्षण। खुफिया भागफल खुफिया की उम्र से संबंधित उपाय के लिए (बुद्धि) टेस्ट। चिकित्सा देखभाल
but it doesn't work. This works when splitting with other symbols like , etc . please help me.