Difference between revisions of "FILE READ VARS"
From Macros Wiki
Line 9: | Line 9: | ||
===Example=== | ===Example=== | ||
− | :FILE_OPEN | + | :FILE_OPEN "dATAfILE.TXT", 3, READ |
− | :FILE_READ_VARS | + | :FILE_READ_VARS 3, v1, v2, v3 |
[[Category:External_File_Handling]] | [[Category:External_File_Handling]] |
Revision as of 19:51, 18 August 2010
Command
- FILE_READ_VARS <file Number>, <list of up to 10 variable names>
Read a line of numeric values from a file that was opened using the [FILE_OPEN]. The text may contain up to 10 values, each seperated by a comma.
Parameters
- <file Number>
- File number, 1 to 10. You may have up to 10 files open at the same time.
- <list of up to 10 variable names>
- List of variable names
Example
- FILE_OPEN "dATAfILE.TXT", 3, READ
- FILE_READ_VARS 3, v1, v2, v3