2017年4月2日
摘要: 一,字符串操作 小写转大写:a.toUpperCase(); 大写转小写:a.toLowerCase(); 从a索引开始截取,截取到b索引:a.substring(a,b); 从a索引开始截取,截取b个字符:a.substr(a,b); 将有规律的字符串分割提取:a.split('有规律的字符串') 阅读全文
posted @ 2017-04-02 11:42 张鑫4477 阅读(406) 评论(0) 推荐(0) 编辑