「Java」BRタグを 改行コード(\r\n)に変換する
サンプルコード:
public static String brToKaiGyo(String destStr) {
if ((destStr == null) || (destStr.length() == 0))
{
return “";
}
destStr = destStr.replaceAll(“<BR>", “\r\n");
return destStr;
}
Coding Changes the World
サンプルコード:
public static String brToKaiGyo(String destStr) {
if ((destStr == null) || (destStr.length() == 0))
{
return “";
}
destStr = destStr.replaceAll(“<BR>", “\r\n");
return destStr;
}