StringUtils测试

StringUtils测试来源:http://blog.sina.com.cn/s/blog_621b6f0e0100tqaj.htmlorg.springframework.util.StringUtils我们经常会对字符串进行操作,spring已经实现了常用的处理功能。我们可以使用org.springframework.util.StringUtils工具类帮我们处理字符串。工具类整理如下:

大家好,又见面了,我是你们的朋友全栈君。

来源:http://blog.sina.com.cn/s/blog_621b6f0e0100tqaj.html

org.springframework.util.StringUtils

我们经常会对字符串进行操作,spring已经实现了常用的处理功能。我们可以使用org.springframework.util.StringUtils 工具类帮我们处理字符串。
工具类整理如下:
  StringUtils.hasLength(null) = false
  StringUtils.hasLength(“”) = false
  StringUtils.hasLength(” “) = true
  StringUtils.hasLength(“Hello”) = true
 
   StringUtils.hasText(null) = false
   StringUtils.hasText(“”) = false
   StringUtils.hasText(” “) = false
   StringUtils.hasText(“12345”) = true
   StringUtils.hasText(” 12345 “) = true
 //是否包含空白字符
 StringUtils.containsWhitespace(null)=false
 StringUtils.containsWhitespace(“”)=false
 StringUtils.containsWhitespace(“a”)=false
 StringUtils.containsWhitespace(“abc”)=false
 StringUtils.containsWhitespace(“abc”)=false
 StringUtils.containsWhitespace(” “)=true
 StringUtils.containsWhitespace(” a”)=true
 StringUtils.containsWhitespace(“abc “)=true
 StringUtils.containsWhitespace(“a b”)=true
 StringUtils.containsWhitespace(“a  b”)

 StringUtils.trimWhitespace(null)=null;
 StringUtils.trimWhitespace(“”)=””;
 StringUtils.trimWhitespace(” “)=””;
 StringUtils.trimWhitespace(“\t”)=””;
 StringUtils.trimWhitespace(” a”)=”a”;
 StringUtils.trimWhitespace(“a “)=”a”;
 StringUtils.trimWhitespace(” a “)=”a”;
 StringUtils.trimWhitespace(” a b “)=”a b”;

 StringUtils.trimLeadingWhitespace(null)=null;
 StringUtils.trimLeadingWhitespace(“”)=””;
 StringUtils.trimLeadingWhitespace(” “)=””;
 StringUtils.trimLeadingWhitespace(“\t”)=””;
 StringUtils.trimLeadingWhitespace(” a”)=”a”;
 StringUtils.trimLeadingWhitespace(“a “)=”a “;
 StringUtils.trimLeadingWhitespace(” a “)=”a “;
 StringUtils.trimLeadingWhitespace(” a b “)=”a b “
 StringUtils.trimLeadingWhitespace(” a b  c “)=”a b  c “

 StringUtils.trimTrailingWhitespace(null)=null;
 StringUtils.trimTrailingWhitespace(” “)=””;
 StringUtils.trimTrailingWhitespace(“\t”)=””;
 StringUtils.trimTrailingWhitespace(“a “)=”a”;
 StringUtils.trimTrailingWhitespace(” a”)=” a”;
 StringUtils.trimTrailingWhitespace(” a “)=” a”;
 StringUtils.trimTrailingWhitespace(” a b “)=” a b”;
 StringUtils.trimTrailingWhitespace(” a b  c “)=” a b  c”;

 StringUtils.trimAllWhitespace(“”)=””;
 StringUtils.trimAllWhitespace(” “)=””;
 StringUtils.trimAllWhitespace(“\t”)=””;
 StringUtils.trimAllWhitespace(” a”)=”a”;
 StringUtils.trimAllWhitespace(“a “)=”a”;
 StringUtils.trimAllWhitespace(” a “)=”a”;
 StringUtils.trimAllWhitespace(” a b “)=”ab”;
 StringUtils.trimAllWhitespace(” a b  c “=”abc”;
 // 统计一个子字符串在字符串出现的次数
 StringUtils.countOccurrencesOf(null, null) == 0;
 StringUtils.countOccurrencesOf(“s”, null) == 0;
 StringUtils.countOccurrencesOf(null, “s”) == 0;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “WERWER”) == 0;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “x”)=0;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, ” “) == 0;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “”) == 0;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “e”) == 2;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “oi”) == 2;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “oiu”) == 2;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “oiur”) == 1;
 StringUtils.countOccurrencesOf(“erowoiueoiur”, “r”) == 2;

 //字符串替换
 String inString = “a6AazAaa77abaa”;
 String oldPattern = “aa”;
 String newPattern = “foo”;
 // Simple replace
 String s = StringUtils.replace(inString, oldPattern, newPattern);
 s.equals(“a6AazAfoo77abfoo”)=true;

 // Non match: no change
 s = StringUtils.replace(inString, “qwoeiruqopwieurpoqwieur”, newPattern);
 s.equals(inString)=true
 s = StringUtils.replace(inString, oldPattern, null);
 s.equals(inString)=true

 // Null old pattern: should ignore
 s = StringUtils.replace(inString, null, newPattern);
        s.equals(inString)=true
 //删除字符串

 String inString = “The quick brown fox jumped over the lazy dog”;
 String noThe = StringUtils.delete(inString, “the”);
 noThe.equals(“The quick brown fox jumped over  lazy dog”)=true;
 String nohe = StringUtils.delete(inString, “he”);
 nohe.equals(“T quick brown fox jumped over t lazy dog”)=true;
 String nosp = StringUtils.delete(inString, ” “);
 nosp.equals(“Thequickbrownfoxjumpedoverthelazydog”)=true;
 String killEnd = StringUtils.delete(inString, “dog”);
 killEnd.equals(“The quick brown fox jumped over the lazy “)=true;
 String mismatch = StringUtils.delete(inString, “dxxcxcxog”);
  mismatch.equals(inString)=true;

 //删除任何字符
 //源代码如下
 //char c = inString.charAt(i);
 //如果不存在 c 值,则返回 -1
 //if (charsToDelete.indexOf(c) == -1) {

 //out.append(c);
 //}

 String inString = “Able was I ere I saw Elba”;

 String res = StringUtils.deleteAny(inString, “I”);
        res.equals(“Able was  ere  saw Elba”)=true;
 res = StringUtils.deleteAny(inString, “AeEba!”);
 res.equals(“l ws I r I sw l”)=true;
 String mismatch = StringUtils.deleteAny(inString, “#@$#$^”);
 mismatch.equals(inString)=true;

 //源代码如下 return (str != null ? “‘” + str + “‘” : null);
 assertEquals(“‘myString'”, StringUtils.quote(“myString”));
 assertEquals(“””, StringUtils.quote(“”));
 assertNull(StringUtils.quote(null));
 //将第一个字符改大写
 StringUtils.capitalize(Str)
 //将第一个个字符改小写
 StringUtils.uncapitalize(str)

 //mypath/myfile.txt” -> “myfile.txt
 //获取字符串文件名和扩展名
 StringUtils.getFilename(“myfile”).equals(“myfile”)=true;
 StringUtils.getFilename(“mypath/myfile”.equals(“myfile”)=true;
 StringUtils.getFilename(“mypath/myfile”.equals(“myfile”)=true;
 StringUtils.getFilename(“myfile.txt”).equals(“myfile.txt”)=true;
 StringUtils.getFilename(“mypath/myfile.txt”).equals(“myfile.txt”)=true;
 // 获取字符串扩展名,以.分隔
 StringUtils.getFilenameExtension(“myfile”)=null;
 StringUtils.getFilenameExtension(“myPath/myfile”)=null;
 StringUtils.getFilenameExtension(“myfile.”).equals(“”)=true;
 StringUtils.getFilenameExtension(“myPath/myfile.”).equals(“”)=true;
 StringUtils.StringUtils.getFilenameExtension(“myfile.txt”).equals(“txt”)=true;
 StringUtils.getFilenameExtension(“mypath/myfile.txt”).equals(“txt”)=true;

 //舍去文件名扩展名
 StringUtils.stripFilenameExtension(null)=true;
 StringUtils.stripFilenameExtension(“”).equals(“”)=true;
 StringUtils.stripFilenameExtension(“myfile”).equals(“myfile”)=true;
 StringUtils.stripFilenameExtension(“mypath/myfile”).equals(“mypath/myfile”)=true;
 StringUtils.stripFilenameExtension(“myfile.”).equals(“myfile”)=true;
 StringUtils.stripFilenameExtension(“mypath/myfile.”).equals(“mypath/myfile”)=true;
 StringUtils.stripFilenameExtension(“mypath/myfile.”).equals(“mypath/myfile”)=true;
 StringUtils.stripFilenameExtension(“myfile.txt”).equals(“myfile”)=true;
 StringUtils.stripFilenameExtension(“mypath/myfile.txt”).equals(“mypath/myfile”)=true

来源:http://blog.sina.com.cn/s/blog_621b6f0e0100tqaj.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/136664.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • leetcode最长无重复字符串_直线是一维还是二维

    leetcode最长无重复字符串_直线是一维还是二维【LeetCode】﹝前缀和ி﹞一维、二维前缀和应用文章目录【LeetCode】﹝前缀和ி﹞一维、二维前缀和应用在区间范围内统计奇数数目★区域和检索-数组不可变★★子数组异或查询★★定长子串中元音的最大数目★★生存人数★★二维区域和检索-矩阵不可变★★矩阵区域和★★矩形区域不超过K的最大数值和★★★在区间范围内统计奇数数目★1523.在区间范围内统计奇数数目【题目】给你两个非负整数low和high。请你返回low和high之间(包括二者)奇数的数目。【示例】输入:l

  • Ubuntu 12.04下解决Tomcat自启动问题

    当我们安装好Tomcat使用后发现,每次启动都需要在终端中手动键入sudo/var/tomcat/bin/startup.sh,那么我们怎么解决这个问题呢http://hovertree.com/

    2021年12月24日
  • c语言入门教程–-18指针

    c语言入门教程–-18指针

  • jvm的垃圾回收器_java 垃圾回收器

    jvm的垃圾回收器_java 垃圾回收器1.GC分类按线程数:并行垃圾回收器:ParallelCollector.同一时间段内只有一个cpu执行垃圾回收操作.用户线程等待. 串行垃圾回收期:SerialCollector.同一时间段内可以有多个cpu执行垃圾回收操作,用户线程等待.按压缩方式:压缩式,内存有序.非压缩式:内存无序.按工作方式:并发式,及并发GC,用户线程和垃圾回收器同时交替进行. 独占式,垃圾回收线程进行时,用户线程需要等待.按工作区分:年轻代,老年代.2.GC性能指标吞吐量:用户线

  • 界面库分享_wpf界面库

    界面库分享_wpf界面库在网上收集了一份免费的界面库,测试效果如下库中文件包括:.LIB文件.DLL文件.h文件使用方法:1.利用MFC向导创建一个对话框窗口(或视图窗口等)2.在stdafx.h中添加#include”../skinH/SkinH.h”#pragmacomment(lib,”../skinLib/SkinH.lib

  • Java开发手册之注释规约「建议收藏」

    Java开发手册之注释规约「建议收藏」Java开发手册之注释规约

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号