StringUtil.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:4k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools;
  19. /**
  20.  * Provides a suite of utilities for manipulating strings.
  21.  * 
  22.  * @author Frz
  23.  * @since Revision 336
  24.  * @version 1.0
  25.  * 
  26.  */
  27. public class StringUtil {
  28. /**
  29.  * Gets a string padded from the left to <code>length</code> by
  30.  * <code>padchar</code>.
  31.  * 
  32.  * @param in The input string to be padded.
  33.  * @param padchar The character to pad with.
  34.  * @param length The length to pad to.
  35.  * @return The padded string.
  36.  */
  37. public static String getLeftPaddedStr(String in, char padchar, int length) {
  38. StringBuilder builder = new StringBuilder(length);
  39. for (int x = in.getBytes().length; x < length; x++) {
  40. builder.append(padchar);
  41. }
  42. builder.append(in);
  43. return builder.toString();
  44. }
  45. /**
  46.  * Gets a string padded from the right to <code>length</code> by
  47.  * <code>padchar</code>.
  48.  * 
  49.  * @param in The input string to be padded.
  50.  * @param padchar The character to pad with.
  51.  * @param length The length to pad to.
  52.  * @return The padded string.
  53.  */
  54. public static String getRightPaddedStr(String in, char padchar, int length) {
  55. StringBuilder builder = new StringBuilder(in);
  56. for (int x = in.getBytes().length; x < length; x++) {
  57. builder.append(padchar);
  58. }
  59. return builder.toString();
  60. }
  61. /**
  62.  * Joins an array of strings starting from string <code>start</code> with
  63.  * a space.
  64.  * 
  65.  * @param arr The array of strings to join.
  66.  * @param start Starting from which string.
  67.  * @return The joined strings.
  68.  */
  69. public static String joinStringFrom(String arr[], int start) {
  70. return joinStringFrom(arr, start, " ");
  71. }
  72. /**
  73.  * Joins an array of strings starting from string <code>start</code> with
  74.  * <code>sep</code> as a seperator.
  75.  * 
  76.  * @param arr The array of strings to join.
  77.  * @param start Starting from which string.
  78.  * @return The joined strings.
  79.  */
  80. public static String joinStringFrom(String arr[], int start, String sep) {
  81. StringBuilder builder = new StringBuilder();
  82. for (int i = start; i < arr.length; i++) {
  83. builder.append(arr[i]);
  84. if (i != arr.length - 1) {
  85. builder.append(sep);
  86. }
  87. }
  88. return builder.toString();
  89. }
  90. /**
  91.  * Makes an enum name human readable (fixes spaces, capitalization, etc)
  92.  * 
  93.  * @param enumName The name of the enum to neaten up.
  94.  * @return The human-readable enum name.
  95.  */
  96. public static String makeEnumHumanReadable(String enumName) {
  97. StringBuilder builder = new StringBuilder(enumName.length() + 1);
  98. String[] words = enumName.split("_");
  99. for (String word : words) {
  100. if (word.length() <= 2) {
  101. builder.append(word); // assume that it's an abbrevation
  102. } else {
  103. builder.append(word.charAt(0));
  104. builder.append(word.substring(1).toLowerCase());
  105. }
  106. builder.append(' ');
  107. }
  108. return builder.substring(0, enumName.length());
  109. }
  110. /**
  111.  * Counts the number of <code>chr</code>'s in <code>str</code>.
  112.  * 
  113.  * @param str The string to check for instances of <code>chr</code>.
  114.  * @param chr The character to check for.
  115.  * @return The number of times <code>chr</code> occurs in <code>str</code>.
  116.  */
  117. public static int countCharacters(String str, char chr) {
  118. int ret = 0;
  119. for (int i = 0; i < str.length(); i++) {
  120. if (str.charAt(i) == chr) {
  121. ret++;
  122. }
  123. }
  124. return ret;
  125. }
  126. }