console觉醒之路,打印个动画如何?
原文地址:
http://www.helloweba.com/view-blog-383.html
批量去掉或替换文本中的换行符(notepad++、sublime text2)
原文地址:http://m.blog.csdn.net/article/details?id=43228729
有时候要将如下形式文本的换行去掉,
类似,如下
xxx,
xxx,
xxx,
xxx,
改造为:xxx,xxx,xxx,xxx,
话不多说,进入正题…………
notepad++去换行(简单、快捷)
工具:notepad++
注意:换行可能是"\n"或者"\r\n"
额外技能:匹配包含某字符串
一、包含“hello word”的行
^.*hello word.*$
二、以“hello word”开始的行
^hello word.*$
三、以“hello word”结尾的行
.*hello word$