码迷,mamicode.com
首页 > Windows程序 > 详细

String的两个API,判断指定字符串是否包含另一字符串,在字符串中删除指定字符串。

时间:2015-03-13 01:38:57      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

               // 在字符串中删除指定字符串。
                String phoneNum="1795112345";
		phoneNum = phoneNum.replace("17951", "");
		System.out.println(phoneNum);



                //判断指定字符串是否包含另一字符串
                String phoneNum="1795112345";
		String IpNum="17951";
		
		return phoneNum.contains(IpNum);

 

String的两个API,判断指定字符串是否包含另一字符串,在字符串中删除指定字符串。

标签:

原文地址:http://www.cnblogs.com/childhooding/p/4334148.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!