回车符(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;