ESLLIB Function
Parse a string and return the next row's data.
EslParseRow( STRING_SV, COLDELIM_SV, ROWDELIM_SV )
STRING_SV
A string variable that contains a string that includes row and column delimiters.
COLDELIM_SV
The single-character column delimiter you want to use when converting the row to a text string.
ROWDELIM_SV
The row delimiter you want to use.
Description
Use this function to parse STRING_SV, extract the data from it, and return the data. If there is a row delimiter, it is not included in the returned string. After the last row is returned, STRING_SV will be empty.
If COLDELIM_SV is a comma and ROWDELIM_SV is new line ("\n"), then comma-separated values (CSV) quote rules will be used.
Be sure to include esllib.inc before using this function.
See Also
EslNumRows( ) Function
EslParseColumn( ) Function