ID: Q115109
The information in this article applies to:
The at sign ("@") cannot be used as a delimiter in FoxPro versions 2.5 and 2.6 for MS-DOS and Windows when you are using the APPEND command to append information from an ASCII text file.
A number of UNIX-based products such as EMPRESS generate ASCII files using @ signs as delimiters. The following is an example of an ASCII file generated by EMPRESS version 6.0 running on a Sun Microsystems SPARC workstation:
   704@575@1111@JOHN B SMITH
   704@575@1122@FRANKLIN T WOND
   704@575@1133@ALICIA J ZELAYA
   APPEND FROM <Text_Filename> DELIMITED WITH @
To correct this problem:
1. In the Command window, type the following to open the text file:
      MODIFY FILE <Text_Filename>
3. Type "@" (without the quotation marks) in the Look For text box, and
   type "," (without the quotation marks) in the Replace With text box.
   Then choose Replace All.
      APPEND FROM <Text_Filename> DELIMITED WITH ,
Last Reviewed: June 27, 1995