answersLogoWhite

0

The Character used as the file delimiter for Apple OS is the / (slash)

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you read integers from files without using formatted and unformatted IO functions?

files are just streams of bytes. So IO functions are the way to go. If you want to read an integer from a file, you have to first read it as a string of characters and then convert it. If you are saving data to a file, it might help to use a character as a delimiter. For example, use the comma and the file might look like: 123,45,6,7,23,2456 Then read each character, separating the integers by finding all the commas as you go.


What would you have to do to a table in a Microsoft Word to make it look like a tabbedlist?

Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.Use the Convert to Text option in the Table options and use the Tab as the delimiter to separate what was in each cell on a row.


Open a gct file?

First save your file as another file so that you won't lose the original file. One way to try and open it is opening it from Excel (use 2007 version and above). Using delimiter, excel can export it to its version for you to view. I have tried this technique before and it worked. Hope this helped. J.


How do you use scanf with delimiter in c plus plus Please provide a basic example with output?

scanf does not employ a delimiter. It simply reads formatted input from std::cin.


How do you read a pipe delimited file in COBOL on the mainframe?

To read a pipe-delimited file in COBOL on the mainframe, you first need to define the file in the FILE SECTION of your program with the appropriate attributes. Use the READ statement to read records from the file into a working storage area. After reading a record, you can use the UNSTRING statement to split the data into individual fields based on the pipe (|) delimiter. Finally, ensure to handle any necessary error checks and end-of-file conditions.


What is meant by character field record and file?

explain file,records,field ,characters (use diagram)


What is Delimited Text?

ASCII is the acronym for American Standard Codes for Information Interchange. It is used to determine which character to display when a keyboard key is pressed, or code entered. So it can refer to basic text. A delimited file is a file that includes text separated by commas or full stops or semi-colons or spaces, or whatever the user designates as a delimiter. If you have something like firstnames and surnames and dates of birth, they could be in a file with a comma after each one, indicating to a program that reads the file, like a spreadsheet or database, as to how to arranged the data. If it was being opened by a spreadsheet, it would start putting the data into cells. It would use the delimiter to decided at what point something goes into the next cell. So if you had a firstname, a comma and a surname, the firstname would be put into one cell and the surname into the next cell.


Is the question mark a valid character to use in file names?

no, it isn't :(


What are the file operation?

fopen() Creates a new file for use Opens a new existing file for use fclose Closes a file which has been opened for use getc() Reads a character from a file putc() Writes a character to a file fprintf() Writes a set of data values to a file fscanf() Reads a set of data values from a file getw() Reads a integer from a file putw() Writes an integer to the file fseek() Sets the position to a desired point in the file ftell() Gives the current position in the file rewind() Sets the position to the begining of the file


How do you use the strtok function?

strtok sequentially truncate string if delimiter is found. If string is not NULL, the function scans string for the first occurrence of any character included in delimiters. If it is found, the function overwrites the delimiter in string by a null-character and returns a pointer to the token, i.e. the part of the scanned string previous to the delimiter. After a first call to strtok, the function may be called with NULL as string parameter, and it will follow by where the last call to strtok found a delimiter. delimiters may vary from a call to another. Parameters. string Null-terminated string to scan. separator Null-terminated string containing the separators. Return Value. A pointer to the last token found in string. NULL is returned when there are no more tokens to be found. Portability. Defined in ANSI-C.


What is ASCII delimited text?

ASCII is the acronym for American Standard Codes for Information Interchange. It is used to determine which character to display when a keyboard key is pressed, or code entered. So it can refer to basic text. A delimited file is a file that includes text separated by commas or full stops or semi-colons or spaces, or whatever the user designates as a delimiter. If you have something like firstnames and surnames and dates of birth, they could be in a file with a comma after each one, indicating to a program that reads the file, like a spreadsheet or database, as to how to arranged the data. If it was being opened by a spreadsheet, it would start putting the data into cells. It would use the delimiter to decided at what point something goes into the next cell. So if you had a firstname, a comma and a surname, the firstname would be put into one cell and the surname into the next cell.


What delimiter are use to specify the beginning and end of literal in c?

In C programming, string literals are specified using double quotes ("). For example, "Hello, World!" is a string literal that starts and ends with double quotes. Character literals, on the other hand, are specified using single quotes ('), such as 'A' for a character literal.