zoukankan      html  css  js  c++  java
  • notepad++搜索的一些东西

    回车符(CR)和换行符(LF)
    CR(Carriage Return, 0Dh)——
    LF(Line feed, 0Ah),——
    回车(CR)和换行(LF)符都是用来表示“下一行”的。而标准没有规定要使用哪一个。于是产生了三种不同的用法:
    Dos和windows采用回车+换行(CR+LG)表示下一行(亦即所谓的PC格式,谁让MS最早雄踞PC市场呢,^_^),
    UNIX采用换行符(LF)表示下一行,
    MAC机采用回车符(CR)表示下一行。

    • In Normal, the text will be searched literally.
    • In Extended, special character sequences will be interpreted as special characters such as newline characters. In this case, you can choose from:
      • \ - Backslash character;
      • – TAB character;
      • – CR character;
      • – LF character;
      • – NULL character;
      • x## - Hexadecimal value (between 00 and FF);
      • u#### - Extended hexadecimal value (between 0000 and FFFF, meant for Unicode characters);
      • d### - Decimal value (between 000 and 255);
      • o### - Octal value (between 000 and 377);
      • ######## - Binary value (between 00000000 and 11111111).
    • In Regular Expression, the query will be handled like a regular expression (POSIX).

    The search direction determines to what relative direction of the cursor will be searched. Up means text before the cursor will be searched, Down means text beyond the cursor will be searched.

    To find the (next) hit, press Find Next (or Enter). Count will count the amount of hits the search will result in.Find all in all opened documents will search all opened documents and displays a list of results for each file, see also Searching in FilesFind all in current documents behaves in a very similar way.

    Close simple closes the search dialog (close button and ESC do the same).

  • 相关阅读:
    一个接口的性能问题定位和分析过程
    HTTP请求全过程(很全面)
    Linux中查看物理CPU个数、核数、逻辑CPU个数
    linux查看文件大小
    ping不通判断系统是否开机
    ping不通判断系统是否开机
    linux压缩解压文件命令
    python连接redis集群,添加数据
    初学python
    企业级BI为什么这么难做?
  • 原文地址:https://www.cnblogs.com/muouren/p/3906156.html
Copyright © 2011-2022 走看看