General::opstl
Examples
Basic Examples (1)
The value of the RecordSeparators option is a list of numbers rather than a list of strings:
Module[{s, result},
s = StringToStream["This1is2a3string"];
result = ReadList[s, Record, RecordSeparators -> {1, 2, 3}];
Close[s];
result
]This shows a valid value for the RecordSeparators option in ReadList:
Module[{s, result},
s = StringToStream["This1is2a3string"];
result = ReadList[s, Record, RecordSeparators -> {"1", "2", "3"}];
Close[s];
result
]