如何在java中清除某个字符后的所有字符串
我想把某个字符串中的某个字符之后的所有字符串全部删除。如:aaa.htmlbbb.html?id=9ccc.html?id=10&&name=zhangsan想把指定的字...
我想把某个字符串中的某个字符之后的所有字符串全部删除。
如:
aaa.html
bbb.html?id=9
ccc.html?id=10&&name=zhangsan
想把指定的字符串"."以后的所有字符全部去掉
我想得到的是aaa,bbb和ccc
请问如何实现,在线等........... 展开
如:
aaa.html
bbb.html?id=9
ccc.html?id=10&&name=zhangsan
想把指定的字符串"."以后的所有字符全部去掉
我想得到的是aaa,bbb和ccc
请问如何实现,在线等........... 展开
7个回答
展开全部
String str = "ccc.html?id=10&&name=zhangsan";
int idx = str.indexOf(".");
str = str.substring(0, idx);
int idx = str.indexOf(".");
str = str.substring(0, idx);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Test98 {
public static void main(String[] args) {
String s1 = "aa.html";//你应该是获得的地址,我将他们放入字符串
String s2 = "bbb.html?id=9 ";
String s3 = "ccc.html?id=10&&name=zhangsan";
test(s1);//测试
test(s2);
test(s3);
}
public static void test(String tmp) {//截取方法
tmp.substring(0,tmp.indexOf(".html"));
System.out.println(tmp);
}
}
public static void main(String[] args) {
String s1 = "aa.html";//你应该是获得的地址,我将他们放入字符串
String s2 = "bbb.html?id=9 ";
String s3 = "ccc.html?id=10&&name=zhangsan";
test(s1);//测试
test(s2);
test(s3);
}
public static void test(String tmp) {//截取方法
tmp.substring(0,tmp.indexOf(".html"));
System.out.println(tmp);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你应该仔细看看API,String有个substring()方法~~~
String a = "aaaa.html";
a = a.substring(0, a.indexOf("."));
a = "aaaa";
String a = "aaaa.html";
a = a.substring(0, a.indexOf("."));
a = "aaaa";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String a = "ccc.html?id=10&&name=zhangsan";
a = a.substring(0,a.indexOf("."));
a = a.substring(0,a.indexOf("."));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询