摘要:
1、递归替换 function replaceChar(str, oldChar, newChar) { if (str.indexOf(oldChar) != -1) { str = str.replace(oldChar, newChar); return replaceChar(str,oldChar, newChar); } else { return str; } }2、使用 replace ... 阅读全文
posted @ 2013-07-17 18:58 生命如风 阅读(1509) 评论(0) 推荐(0) 编辑