1. 程式人生 > >字符串判斷空

字符串判斷空

per new ole com urn email bool pri class

import java.util.regex.Pattern;

/**
* 字符串處理
*
* @author wolf 2012.08.08
* @email
*/
public class StrUtils {

/**
* 為空
*
* 2013年9月8日 下午10:08:44
* wolf
* @param str
* @return
*/
public static boolean isEmpty(String str) {
return str == null || "".equals(str);
}

/**
* 不為空
*
* 2013年9月8日 下午10:08:31

* wolf
* @param str
* @return
*/
public static boolean isNotEmpty(String str) {
return !isEmpty(str);
}

/**
* 轉大寫
*
* 2013年9月8日 下午10:08:23
* wolf
* @param instr
* @return
*/
public static String toUpperCase(String instr) {
return instr == null ? instr : instr.toUpperCase();
}

/**
* 轉小寫
*
* 2013年9月8日 下午10:08:10
* wolf
* @param instr
* @return
*/
public static String toLowerCase(String instr) {
return instr == null ? instr : instr.toLowerCase();
}

/**
* 首字母大寫 ,其余不變
*
* 2013年9月8日 下午10:08:17
* wolf
* @param str
* @return

*/
public static String toUpperCaseFirst(String str) {
if (str == null)
return null;
if (str.length() == 0)
return str;
String pre = String.valueOf(str.charAt(0));
return str.replaceFirst(pre, pre.toUpperCase());
}

/**
* 首字母小寫 ,其余不變
*
* 2013年9月8日 下午10:08:17
* wolf
* @param str
* @return
*/
public static String toLowerCaseFirst(String str) {
if (str == null)
return null;
if (str.length() == 0)
return str;
String pre = String.valueOf(str.charAt(0));
return str.replaceFirst(pre, pre.toLowerCase());
}

/**
* 不會拋NullPointerException 的trim() <br>
* 傳入null會返回null
*
* @param str
* @return
*/
public static String trim(String str) {
return str == null ? null : str.trim();
}

/**
* 過濾 ;當instr==null時返回長度為0的""; <br>
* 與 nvl(...)系的區別在於只處理null ,不處理長度為0的"";
*
* @param instr
* @return
*/
public static String nvl(String instr) {
return nvl(instr, "");
}

/**
* 過濾 ,把null和長度為0的""當成同一種情況處理; <br>
* 當instr==null||"".equals(instr)時返回defaultValue ;其它情況返回 instr
*
* @param instr
* @param defaultValue
* @return
*/
public static String nvl(String instr, String defaultValue) {
return instr == null || "".equals(instr) ? defaultValue : instr;
}

/**
* 比較 str1 和 str2 如果都是 null 或者 str1.equals(str2) 返回 true 表示一樣 ;
*
* @author wangp
* @since 2009.01.10
* @param str1
* @param str2
* @return
*/
public static boolean equals(String str1, String str2) {
if (str1 == null && str2 == null)
return true;
if (str1 != null && str1.equals(str2))
return true;
return false;
}

public static String apadLeft(double a, int b, int len) {
return apadLeft(String.valueOf(a), String.valueOf(b), len);
}

public static String apadRight(double a, int b, int len) {
return apadRight(String.valueOf(a), String.valueOf(b), len);
}

public static String apadLeft(String str, String str2, int len) {
if (str == null || str.length() == len || str2 == null)
return str;
if (str.length() > len)
return str.substring(str.length() - len, len);
return apadpro(str, str2, len, true);
}

public static String apadRight(String str, String str2, int len) {
if (str == null || str.length() == len || str2 == null)
return str;
if (str.length() > len)
return str.substring(0, len);
return apadpro(str, str2, len, false);
}

private static String apadpro(String a, String b, int len, boolean appendleft) {
int f = len - a.length();
for (int i = 0; i < f; i++) {
a = appendleft == true ? b + a : a + b;
}
return a;
}

/**
* 清除字符串中所有的空格 ,傳入null返回null
*
* @author wangp
* @since 2009.02.06
* @param str
* @return
*/
public static String clear(String str) {
return clear(str, " ");
}

/**
* 清除str中出現的所有str2字符序列 直到結果中再也找不出str2為止 str2 == null時 返回str
*
* @author wangp
* @since 2009.02.06
* @param str
* 原始字符串
* @param str2
* 清除的目標
* @return
*/
public static String clear(String str, String str2) {
if (str == null)
return str;
if (str2 == null)
return str;
String reg = "(" + str2 + ")+";
Pattern p = Pattern.compile(reg);
while (p.matcher(str).find()) {
str = str.replaceAll(reg, "");
}
return str;
}

/**
* 如果str的長度超過了c則取c-sub.length長度,然後拼上sub結尾
*
* @author wangp
* @since 2009.06.11
* @param str
* @param c
* @param sub
* @return
*/
public static String suojin(String str, int c, String sub) {
if (isEmpty(str))
return str;
if (str.length() <= c)
return str;
sub = nvl(sub);
c = c - sub.length();
c = c > str.length() ? 0 : c;
str = str.substring(0, c);
return str + sub;
}

/**
* 如果str的長度超過了length,取前length位然後拼上...
*
* @author yimian
* @since 2009.06.11
* @param str
* @param length
* @return
*/
public static String suojin(String str, int length) {
return suojin(str, length, "…");
}

public static String replaceOnce(String text, String searchString, String replacement) {
return replace(text, searchString, replacement, 1);
}

public static String replace(String text, String searchString, String replacement) {
return replace(text, searchString, replacement, -1);
}

public static String replace(String text, String searchString, String replacement, int max) {
if (isEmpty(text) || isEmpty(searchString) || replacement == null || max == 0)
return text;
int start = 0;
int end = text.indexOf(searchString, start);
if (end == -1)
return text;
int replLength = searchString.length();
int increase = replacement.length() - replLength;
increase = increase >= 0 ? increase : 0;
increase *= max >= 0 ? max <= 64 ? max : 64 : 16;
StringBuffer buf = new StringBuffer(text.length() + increase);
do {
if (end == -1)
break;
buf.append(text.substring(start, end)).append(replacement);
start = end + replLength;
if (--max == 0)
break;
end = text.indexOf(searchString, start);
} while (true);
buf.append(text.substring(start));
return buf.toString();
}


}

字符串判斷空