CommonsのStringUtils.deleteWhitespaceを使用します。
/**
* 全角半角スペースを削除します。
*
* @param subject
* @return String
*/
public static String deleteWhitespace(String subject) {
return StringUtils.deleteWhitespace(subject);
}
CommonsのStringUtils.deleteWhitespaceを使用します。
/**
* 全角半角スペースを削除します。
*
* @param subject
* @return String
*/
public static String deleteWhitespace(String subject) {
return StringUtils.deleteWhitespace(subject);
}