String currentString = "Fruit: they taste good";
String[] separated = currentString.split(":");
separated[0]; // this will contain "Fruit"
separated[1]; // this will contain " they taste good"
आप दूसरी स्ट्रिंग के लिए स्थान निकालना चाहते हैं:
separated[1] = separated[1].trim();
यदि आप डॉट (।) जैसे विशेष वर्ण के साथ स्ट्रिंग को विभाजित करना चाहते हैं, तो आपको डॉट से पहले एस्केप चरित्र \ का उपयोग करना चाहिए
उदाहरण:
String currentString = "Fruit: they taste good.very nice actually";
String[] separated = currentString.split("\\.");
separated[0]; // this will contain "Fruit: they taste good"
separated[1]; // this will contain "very nice actually"
इसे करने के अन्य तरीके भी हैं। उदाहरण के लिए, आप StringTokenizer
वर्ग (से java.util
) का उपयोग कर सकते हैं :
StringTokenizer tokens = new StringTokenizer(currentString, ":");
String first = tokens.nextToken();// this will contain "Fruit"
String second = tokens.nextToken();// this will contain " they taste good"
// in the case above I assumed the string has always that syntax (foo: bar)
// but you may want to check if there are tokens or not using the hasMoreTokens method