发布网友 发布时间:2022-04-25 15:31
共5个回答
热心网友 时间:2023-10-13 02:26
用java中String类里的split();方法 这一方法支持正则表达式
用法
String str=“1234567.1234”;
String [] strs = str.split("[.]");
就可以得到数组 strs[0] =1234567; strs[1] =1234
热心网友 时间:2023-10-13 02:26
写了一个简单的截取,凑活着看吧,应该能够满足你的需要。多说一句,兄弟,你还是多看看API吧!
public class demo {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
double f=1234567.1234;
String str=f+"";
int index=str.indexOf(".");
System.out.println(str.substring(0, index));
System.out.println(str.substring(index+1));
}
}
热心网友 时间:2023-10-13 02:26
so easy :
String str ="1234567.1234";
String[] aa = str.split(".");//他会把按.分开的部分存储到数组中
aa[0] 中的内容就是1234567
aa[1]中的内容就是1234
了!~
热心网友 时间:2023-10-13 02:27
public class b {
public static void main(String[] args) {
String s="1234567.1234 ";
String d[]=s.split(".");
for(int i=0; i<d.length; i++) {
System.out.print(d[i]);
}
}
}
热心网友 时间:2023-10-13 02:28
s.substring(s.lastIndexOf(".") + 1); 可以实现