首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

拾掇 apache 提供的StringUtils

2013-01-05 
整理 apache 提供的StringUtils197????//移除开始部分的相同的字符198????//System.out.println(StringUti

整理 apache 提供的StringUtils

197????//移除开始部分的相同的字符198????//System.out.println(StringUtils.removeStart("www.baidu.com", "www."));199????//移除开始部分的相同的字符,不区分大小写200????//System.out.println(StringUtils.removeStartIgnoreCase("www.baidu.com", "WWW"));201????//移除后面相同的部分202????//System.out.println(StringUtils.removeEnd("www.baidu.com", ".com"));203????//移除后面相同的部分,不区分大小写204????//System.out.println(StringUtils.removeEndIgnoreCase("www.baidu.com", ".COM"));205????//移除所有相同的部分206????//System.out.println(StringUtils.remove("www.baidu.com/baidu", "bai"));207????//移除结尾字符为"\n", "\r", 或者 "\r\n".208????//System.out.println(StringUtils.chomp("abcrabc\r"));209????//也是移除,未解。去结尾相同字符210????//System.out.println(StringUtils.chomp("baidu.com", "com"));211????//去掉末尾最后一个字符.如果是"\n", "\r", 或者 "\r\n"也去除212????//System.out.println(StringUtils.chop("wwe.baidu"));213????//替换~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~214????//替换指定的字符,只替换第一次出现的215????//System.out.println(StringUtils.replaceOnce("www.baidu.com/baidu", "baidu", "hao123"));216????//替换所有出现过的字符217????//System.out.println(StringUtils.replace("www.baidu.com/baidu", "baidu", "hao123"));218????//也是替换,最后一个参数表示替换几个219????//System.out.println(StringUtils.replace("www.baidu.com/baidu", "baidu", "hao123", 1));220????java comme