A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. 以下是StringUtils的各项用法
  2. 1.空字符串检查
  3. 使用函数: StringUtils.isBlank(testString)
  4. 函数介绍: 当testString为空,长度为零或者仅由空白字符(whitespace)组成时,返回True;否则返回False
  5. 例程:
  6.     String test = "";
  7.     String test2 = "\n\n\t";
  8.     String test3 = null;
  9.     String test4 = "Test";

  10.     System.out.println( "test blank? " + StringUtils.isBlank( test ) );
  11.     System.out.println( "test2 blank? " + StringUtils.isBlank( test2 ) );
  12.     System.out.println( "test3 blank? " + StringUtils.isBlank( test3 ) );
  13.     System.out.println( "test4 blank? " + StringUtils.isBlank( test4 ) );
  14. 输出如下:
  15. test blank? true
  16. test2 blank? true
  17. test3 blank? true
  18. test4 blank? False
  19. 函数StringUtils.isNotBlank(testString)的功能与StringUtils.isBlank(testString)相反.


  20. 2.清除空白字符
  21. 使用函数: StringUtils.trimToNull(testString)
  22. 函数介绍:清除掉testString首尾的空白字符,如果仅testString全由空白字符
  23. (whitespace)组成则返回null
  24. 例程:
  25.     String test1 = "\t";
  26.     String test2 = "  A  Test  ";
  27.     String test3 = null;

  28.     System.out.println( "test1 trimToNull: " + StringUtils.trimToNull( test1 ) );
  29.     System.out.println( "test2 trimToNull: " + StringUtils.trimToNull( test2 ) );
  30.     System.out.println( "test3 trimToNull: " + StringUtils.trimToNull( test3 ) );

  31. 输出如下:
  32. test1 trimToNull: null
  33. test2 trimToNull: A  Test
  34. test3 trimToNull: null

  35. 注意:函数StringUtils.trim(testString)与
  36. StringUtils.trimToNull(testString)功能类似,但testString由空白字符
  37. (whitespace)组成时返回零长度字符串。

  38. 3.取得字符串的缩写
  39. 使用函数: StringUtils.abbreviate(testString,width)和StringUtils.abbreviate(testString,offset,width)
  40. 函数介绍:在给定的width内取得testString的缩写,当testString的长度小于width则返回原字符串.
  41. 例程:
  42.     String test = "This is a test of the abbreviation.";
  43.     String test2 = "Test";

  44.     System.out.println( StringUtils.abbreviate( test, 15 ) );
  45.     System.out.println( StringUtils.abbreviate( test, 5,15 ) );
  46.     System.out.println( StringUtils.abbreviate( test2, 10 ) );
  47. 输出如下:
  48. This is a te...
  49. ...is a test...
  50. Test

  51. 4.劈分字符串
  52. 使用函数: StringUtils.split(testString,splitChars,arrayLength)
  53. 函数介绍:splitChars中可以包含一系列的字符串来劈分testString,并可以设定得
  54. 到数组的长度.注意设定长度arrayLength和劈分字符串间有抵触关系,建议一般情况下
  55. 不要设定长度.
  56. 例程:
  57.     String input = "A b,c.d|e";
  58.     String input2 = "Pharmacy, basketball funky";
复制代码

2 个回复

倒序浏览
  1. String[] array1 = StringUtils.split( input, " ,.|");
  2.     String[] array2 = StringUtils.split( input2, " ,", 2 );


  3.     System.out.println( ArrayUtils.toString( array1 ) );
  4.     System.out.println( ArrayUtils.toString( array2 ) );
  5. 输出如下:
  6. {A,b,c,d,e}
  7. {Pharmacy,basketball funky}

  8. 5.查找嵌套字符串
  9. 使用函数:StringUtils.substringBetween(testString,header,tail)
  10. 函数介绍:在testString中取得header和tail之间的字符串。不存在则返回空
  11. 例程:
  12.     String htmlContent = "ABC1234ABC4567";
  13.     System.out.println(StringUtils.substringBetween(htmlContent, "1234", "4567"));
  14.     System.out.println(StringUtils.substringBetween(htmlContent, "12345", "4567"));
  15. 输出如下:
  16.     ABC
  17.     null


  18. 6.去除尾部换行符
  19. 使用函数:StringUtils.chomp(testString)
  20. 函数介绍:去除testString尾部的换行符
  21. 例程:
  22.     String input = "Hello\n";
  23.     System.out.println( StringUtils.chomp( input ));
  24.     String input2 = "Another test\r\n";
  25.     System.out.println( StringUtils.chomp( input2 ));
  26. 输出如下:
  27.     Hello
  28.     Another test


  29. 7.重复字符串
  30. 使用函数:StringUtils.repeat(repeatString,count)
  31. 函数介绍:得到将repeatString重复count次后的字符串
  32. 例程:
  33.     System.out.println( StringUtils.repeat( "*", 10));
  34.     System.out.println( StringUtils.repeat( "China ", 5));
  35. 输出如下:
  36.     **********
  37.     China China China China China

  38. 其他函数:StringUtils.center( testString, count,repeatString );
  39. 函数介绍:把testString插入将repeatString重复多次后的字符串中间,得到字符串
  40. 的总长为count
  41. 例程:
  42.     System.out.println( StringUtils.center( "China", 11,"*"));
  43. 输出如下:
  44.     ***China***
复制代码
回复 使用道具 举报
  1. 8.颠倒字符串
  2. 使用函数:StringUtils.reverse(testString)
  3. 函数介绍:得到testString中字符颠倒后的字符串
  4. 例程:
  5.     System.out.println( StringUtils.reverse("ABCDE"));
  6. 输出如下:
  7.     EDCBA

  8. 9.判断字符串内容的类型
  9. 函数介绍:
  10. StringUtils.isNumeric( testString ) :如果testString全由数字组成返回True
  11. StringUtils.isAlpha( testString ) :如果testString全由字母组成返回True
  12. StringUtils.isAlphanumeric( testString ) :如果testString全由数字或数字组
  13. 成返回True
  14. StringUtils.isAlphaspace( testString )  :如果testString全由字母或空格组
  15. 成返回True

  16. 例程:
  17.     String state = "Virginia";
  18.     System.out.println( "Is state number? " + StringUtils.isNumeric(
  19. state ) );
  20.     System.out.println( "Is state alpha? " + StringUtils.isAlpha( state )
  21. );
  22.     System.out.println( "Is state alphanumeric? " +StringUtils.isAlphanumeric( state ) );
  23.     System.out.println( "Is state alphaspace? " + StringUtils.isAlphaSpace( state ) );
  24. 输出如下:
  25.     Is state number? false
  26.     Is state alpha? true
  27.     Is state alphanumeric? true
  28.     Is state alphaspace? true

  29. 10.取得某字符串在另一字符串中出现的次数
  30. 使用函数:StringUtils.countMatches(testString,seqString)
  31. 函数介绍:取得seqString在testString中出现的次数,未发现则返回零
  32. 例程:
  33.     System.out.println(StringUtils.countMatches( "Chinese People", "e"
  34. ));
  35. 输出:
  36.     4

  37. 11.部分截取字符串
  38. 使用函数:
  39. StringUtils.substringBetween(testString,fromString,toString ):取得两字符
  40. 之间的字符串
  41. StringUtils.substringAfter( ):取得指定字符串后的字符串
  42. StringUtils.substringBefore( ):取得指定字符串之前的字符串
  43. StringUtils.substringBeforeLast( ):取得最后一个指定字符串之前的字符串
  44. StringUtils.substringAfterLast( ):取得最后一个指定字符串之后的字符串

  45. 函数介绍:上面应该都讲明白了吧。
  46. 例程:
  47.     String formatted = " 25 * (30,40) [50,60] | 30";
  48.     System.out.print("N0: " + StringUtils.substringBeforeLast( formatted, "*" ) );
  49.     System.out.print(", N1: " + StringUtils.substringBetween( formatted, "(", "," ) );
  50.     System.out.print(", N2: " + StringUtils.substringBetween( formatted, ",", ")" ) );
  51.     System.out.print(", N3: " + StringUtils.substringBetween( formatted, "[", "," ) );
  52.     System.out.print(", N4: " + StringUtils.substringBetween( formatted, ",", "]" ) );
  53.     System.out.print(", N5: " + StringUtils.substringAfterLast( formatted, "|" ) );
  54. 输出如下:
  55.     N0:  25 , N1: 30, N2: 40, N3: 50, N4: 40) [50,60, N5:  30

  56. 1. 检查字符串是否为空:



  57. static boolean isBlank(CharSequence str)  判断字符串是否为空或null;
  58. static boolean isNotBlank(CharSequence str) 判断字符串是否非空或非null;



  59. StringUtils.isBlank("a");
  60. 返回结果为: false;



  61. 2. 缩进字符串:



  62. static String abbreviate(String str, int maxWidth) 缩进字符串,第二个参数至少为4(包括...)



  63. StringUtils.abbreviate("abcdefg", 20);
  64. 返回结果为:abcdefg (正常显示)

  65. StringUtils.abbreviate("abcdefg", 4);
  66. 返回结果为:a...



  67. 3. 首字母大写:



  68. static String capitalize(String str) 首字母大写
  69. static String uncapitalize(String str)首字母小写  



  70. StringUtils.capitalize("abcdefg");
  71. 返回结果:Abcdefg



  72. 4. 字符串显示在一个大字符串的位置:



  73. static String center(String str, int size);  默认以空格填充
  74. static String center(String str, int size, String padString); 其余位置字符串填充
  75. public static String leftPad(String str,int size); 左侧空格填充
  76. public static String leftPad(String str,int size,String padStr);左侧字符串填充
  77. public static String rightPad(String str,int size); 左侧空格填充
  78. public static String rightPad(String str,int size,String padStr);左侧字符串填充


  79. StringUtils.center("abcdefg", 20);
  80. 返回结果:      abcdefg      

  81. StringUtils.center("abcdefg", 20,"*_");
  82. 返回结果:*_*_*_abcdefg*_*_*_*

  83. StringUtils.leftPad("abc", 10, "*");
  84. 返回结果:*******abc



  85. 5. 重复字符串次数



  86. static String repeat(String str, int repeat);



  87. StringUtils.repeat("abc", 5);
  88. 返回结果:abcabcabcabcabc



  89. 6. 是否全是大写,是否全是小写(3.0版本)



  90. public static boolean isAllLowerCase(String str);
  91. public static boolean isAllUpperCase(String str);



  92. StringUtils.isAllLowerCase("abC");
  93. 返回结果:false



  94. 7. 是否都是由字母组成:



  95. public static boolean isAlpha(String str);  只由字母组成
  96. public static boolean isAlphaSpace(String str); 只有字母和空格组成
  97. public static boolean isAlphanumeric(String str);只由字母和数字组成
  98. public static boolean isAlphanumericSpace(String str);只由字母数字和空格组成
  99. public static boolean isNumeric(String str);只由数字组成
  100. public static boolean isNumericSpace(String str);只由数字和空格组成



  101. StringUtils.isAlpha("a2bdefg");
  102. 返回结果:false



  103. 8. 小字符串在大字符串中的匹配次数



  104. public static int countMatches(String str,String sub);



  105. StringUtils.countMatches("ababsssababa", "ab");
  106. 返回结果:4



  107. 9. 字符串倒转



  108. public static String reverse(String str);



  109. StringUtils.reverse("abcdef");
  110. 返回结果:fedcba



  111. 10. 大小写转换,空格不动


  112. public static String swapCase(String str);



  113. StringUtils.swapCase("I am a-A*a")
  114. 返回结果:i AM A-a*A
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马