特殊字元的處理。。¥$$$

liuliangbin發表於2009-04-10

while (true) {
StringBuffer sb = new StringBuffer();
int index = tmpMailContent.indexOf("$");
if (index>=0) {
if (index>0) {
sb.append(tmpMailContent.substring(0,index));
}
sb.append("$");
sb.append(tmpMailContent.substring(index+1));

tmpMailContent = sb.toString();
} else {
break;
}
}

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/78156/viewspace-1020305/,如需轉載,請註明出處,否則將追究法律責任。

相關文章