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$
?