You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The function to loop all lines for the callback function calling.
Sample
//The content of the test.txt file is //"123456789012345678901111122222333334444499999777777777722222"varbinaryReader=newBinaryReader("input/test.txt",[5,10,5],["MS932","MS932","MS932"],20);binaryReader.loopAllLines(callback);// The function "callback" will be executed three timesfunctioncallback(aryField,index){
...
};
API
Calling
Returning
binaryReader. loopAllLines ( callback )
void
Parameters
Type
Description
callback ( aryField, index )
Function
The function that is expected to execute line-by-line. aryField: The array data. index: The line number which counts from 0.