2016年9月25日
摘要: No.文字表記10進表記16進表記文字 Comment 001 &quot; &#34; &#x22; """ quotation mark = APL quote 002 &amp; &#38; &#x26; "&" ampersand 003 &lt; &#60; &#x3C; "<" less 阅读全文
posted @ 2016-09-25 22:52 @ 小浩 阅读(345) 评论(0) 推荐(0)
摘要: Java字符代码中干掉制表符、回车符和换行符 代码片段: String sql = StringUtils.trim(sql).replaceAll("[\\r\\n\\t]","");//干掉空格和换行符以及制表符; 说明:String类的replaceAll就有正则替换功能。 \t为制表符 \n 阅读全文
posted @ 2016-09-25 13:27 @ 小浩 阅读(919) 评论(0) 推荐(0)