1、写sql语句in的条件时
2、字符串拼接时
有时候要将如下形式文本的换行去掉,
xxx,
xxx,
xxx,
改造为:xxx,xxx,xxx,
话不多说,进入正题…………
---------------------------------------------------------------------------------
分隔线------------------------------------------------------------------------
---------------------------------------------------------------------------------
notepad++去换行(大略、快捷)
工具:notepad++
特殊把稳:换行可能是\"大众\n\"大众(此居多)或者\"大众\r\公众或者\公众\r\n\"大众
额外技能:匹配包含某字符串
一、包含“hello word”的行
^.hello word.$
二、以“hello word”开始的行
^hello word.$
三、以“hello word”结尾的行
.hello word$
sublime text去换行
工具:sublime text2(这个一款非常强大的文本编辑工具,程序员至心须要一个,强烈推举)
步骤一:ctrl+h更换空格(replace all更换所有)
步骤二:在ctrl+h界面alt+r 搜索\n更换换行(replace all更换所有)
末了,完美收工,如下形式
xxx,xxx,xxx,xxx,
技能一:去掉某个特定字符串之后的内容(快捷键:ctrl+h)
技能二:java去掉字符串中多余逗号,只保留一个
// 去掉开头、结尾的逗号
tempStr = tempStr.replaceAll(\"大众^(,)\"大众, \公众\"大众);
tempStr = tempStr.replaceAll(\"大众(,)$\"大众, \公众\"大众);
// 中间多余的逗号,更换为一个
tempStr = tempStr.replaceAll(\"大众(,+)\"大众, \"大众,\"大众);
js则用:tempStr = tempStr.replace(/^(,)/g, \"大众\"大众);