java_method_stringUtils

/**
* 字符串英文单双引号处理,将中英文引号转为中文的引号
* @param temp
* @return
*/
public static String getStringDatabase(String temp){

if ( temp == null || "".equals( temp )){
return "";
}
temp = temp.replace( "'" , "’" );
temp = temp.replace("\"", "”");

return temp;
}

上一篇:《Java从入门到失业》第一章:计算机基础知识(三):程序语言简介


下一篇:简单易懂的程序语言入门小册子(6):基于文本替换的解释器,引入continuation