INFO: Escape Character Erases First Characters in gets() StringLast reviewed: September 2, 1997Article ID: Q57948 |
The information in this article applies to:
SUMMARYIn Microsoft C for MS-DOS and Windows NT, if you enter the escape character (ASCII 1Bh) from the keyboard (console) into a string that gets(), cgets(), or fgets() is reading, all the string previously read in is erased. The string pointer is reset so that characters following the escape character are read into the beginning of the string. This is consistent with the action taken by the operating system to parse the input line. However, if the escape character is input from a file by redirection, the entire string, including the escape character, will be read into the string. MORE INFORMATION
Sample Code #1
/* Compile options needed: none */ #include <conio.h> #include <stdio.h> char buf[22]; char *result; void main(void) { int i; buf[0] = 20; printf("Enter your text: \n"); result = gets(buf); printf ( "Resulting String: %s\n", result ); for( i = 0; i < 20; i ++ ) { printf("Buf[%2d] = %c (char)\n", i, buf[i]); } }Enter the following string as a test:
abcdef<esc>ghijkNote that the resulting string is output as:
ghijkNow, create a data file named test.dat containing the string "abcdef<esc>ghijk" either by using a text editor that permits escape characters to be embedded in a string or by using the sample code #2 below.
Sample Code #2
/* Compile options needed: none */ #include <stdio.h> void main(void) { FILE* fp; char* fname = "test.dat"; int numwrote; if ( (fp = fopen( fname, "wt" )) == NULL ) printf( "Unable to open text file \"%s\" for writing.\n", fname ); else { if ( (numwrote = fprintf( fp, "abcdef""\x1b""ghijk" )) != 12 ) printf( "Write to file failed! %d bytes written!\n", numwrote ); fclose( fp ); } }If the program from sample code #1 is run with input redirected from the data file, as follows:
program <test.datthe resulting string is output as follows:
abcdef<esc>ghijkThis behavior occurs in the entire gets() family of routines, including gets(), cgets(), and fgets(). If the input is coming from the console, the run time will use the standard MS-DOS, OS/2, or Windows NT keyboard read routines. On the other hand, if the input is coming from a file (through redirection), the operating system doesn't perform any editing and the file is read in literally. Keywords : CRTIss kbcode kbfasttip Version : MS-DOS:5.1,6.0,6.00a,6.00ax,7.0; WINDOWS:1.0,1.5; WINDOWS NT:1.0,2.0,2.1,4.0,5.0 Platform : MS-DOS NT WINDOWS Issue type : kbinfo |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |