2013-12-13 68 views

回答

0

公共字符串的子串(INT的beginIndex,詮釋endIndex的)參數:這裏 是參數的細節:

的beginIndex - 起始索引(包含)。

endIndex - 結束索引,獨佔。

使用System.out.println(Str.substring(0,3));

+0

都能跟得上。 OP要求前三部分分別爲'198','160'和'12' –

3

您可以分割你的字符串

String string = "198.160.12.0"; 
String[] parts = string.split("."); 

String part1 = parts[0] // first part 
String part2 = parts[1] // second part 
String part3 = parts[2] // third part 
0

您可以執行下列操作:

String str = "198.160.12.0"; 

//first alternative 
String[] split = str.split("\\."); 
System.out.println(split[0]); 

//second alternative   
String splitStr = str.substring(0, str.indexOf('.')); 
System.out.println(splitStr); 
相關問題