Carriage Return (CR) and line feed (LF)
Cr (carriage return, 0dh) -- \ n
LF (line feed, 0ah), -- \ r
The carriage return (CR) and line feed (LF) are used to represent the "next line. The standard does not specify which one to use. There are three different usage methods:
DOS and Windows use carriage return + line feed (CR + LG) to represent the next line (that is, the so-called PC format, who makes Ms the first to dominate the PC market, ^ _ ^ ),
UNIX uses the line break (LF) to indicate the next line,
The Mac machine uses the carriage return (CR) to represent the next line.
-
- InNormal, 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;
- \ T-Tab character;
-
- \ R-CR character;
-
- \ N-lf character;
-
- \ 0-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 );
- \ B ########-binary value (between 00000000 and 11111111 ).
-
- InRegular 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, pressFind Next (or enter ).Count will count the amount of hits the search will result in.Find all in all opened shortents will search all opened shortents and displays a list of results for each file, see also searching in files.Find all in current documents behaves in a very similar way.
Close simple closes the Search dialog (close button and ESC do the same ).