zoukankan      html  css  js  c++  java
  • Visual Studio中删除所有空行

    此文转载自博客园,原文链接:http://www.cnblogs.com/k-sharp/archive/2010/05/18/1738264.html

  • Enter: Ctrl+H
  • Find what: ^:b*$\n
  • Replace with: [Empty]
  • Look in: Current Document
  • Find Option: Use Regular Expressions
  • Click: Replace All

    解释一下正则表达式^:b*$\n,^表示一行的开始,$表示一行的结束,:b表示空格或tab,*表示0个或多个。\n表示换行符。

  • 在 Find What 编辑框中,点击右侧的小箭头,可以打开正则表达式符号表,使用正则表达式几乎可以满足大部分查找需求,下面是完整的符号列表,选自MSDN

    http://msdn.microsoft.com/en-us/library/aa293063(VS.71).aspx

查看全文
  • 相关阅读:
    Python字符串转码问题
    tcpip详解笔记(21) TCP的路径MTU探测与长肥管道
    sync,fsync,fdatasync,fflush
    tcpip详解笔记(22) telnet协议
    tcpip详解笔记(18)TCP的超时与重传
    tcpip详解笔记(16) TCP的交互数据流
    Get exception description and stack trace which caused an exception
    tcpip详解笔记(20) TCP的Keepalive定时器
    [转]应该知道的Linux技巧
    How to prettyprint JSON script?
  • 原文地址:https://www.cnblogs.com/graphics/p/1738664.html
  • Copyright © 2011-2022 走看看