String currentString = "Fruit: they taste good";
String[] separated = currentString.split(":");
separated[0]; // this will contain "Fruit"
separated[1]; // this will contain " they taste good"
Bạn có thể muốn xóa khoảng trắng sang Chuỗi thứ hai:
separated[1] = separated[1].trim();
Nếu bạn muốn tách chuỗi bằng một ký tự đặc biệt như dấu chấm (.), Bạn nên sử dụng ký tự thoát \ trước dấu chấm
Thí dụ:
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"
Có nhiều cách khác để làm điều đó. Chẳng hạn, bạn có thể sử dụng StringTokenizer
lớp (từ 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