Subject | English | Korean |
comp., MS | control escape sequence | 제어 이스케이프 시퀀스 (In regular expressions, a backslash followed by the letter "c" followed by one of the letters "a" through "z" or "A" through 'Z'. It matches the ASCII control character that is named by that letter) |
comp., MS | escape sequence | 이스케이프 시퀀스 (A character combination consisting of an escape character, usually a backslash, followed by a letter or by a combination of digits) |
comp., MS | hexadecimal escape sequence | 16진수 이스케이프 시퀀스 (In regular expressions, a backslash followed by the letter "x" followed by a sequence of hexadecimal digits. It matches a character in the target sequence that has the value that is specified by the two digits) |
comp., MS | octal escape sequence | 8진수 이스케이프 시퀀스 (In regular expressions, a backslash followed by one, two, or three octal digits (0-7). It matches a character in the target sequence that has the value that is specified by those digits) |
comp., MS | unicode escape sequence | 유니코드 이스케이프 시퀀스 (In regular expressions, a backslash followed by the letter "u" followed by four hexadecimal digits. It matches a character in the target sequence that has the value that is specified by the four digits) |