LINE_N-GettheNthlineofacharacterstring[LINE_N_STR,POS,EOL_MARKS]=vlt.string.line_n(STR,N,...)ReturnstheNthlineofamultilinestringSTR.LINE_N_STRisthestringcontentsoftheNthline,withouttheendoflinecharacter.ThepositionofthebeginningoftheNthlinewithinthestringSTRisreturnedinPOS.ThefunctionalsoreturnsallofthelocationsoftheendoflinemarksEOL_MARKS.IfthelastcharacterofSTRisnotanend-of-line,thenthefunctionaddsanend-of-linecharactertotheendofthestring(andthisisreturnedinEOL_MARKS).Thebehaviorofthefunctioncanbealteredbyaddingname/valuepairs:Name(defaultvalue):|Description-----------------------------------------------------------------------eol(sprintf('\n'))|Endoflinecharacter,couldalsouse'\r'eol_marks([])|Ifitisnon-empty,thentheprogram|skipsthesearchforeol_marksand|usestheprovidedvariable.Thisisuseful|iftheuserisgoingtocallvlt.string.line_n|manytimes;onecansavethesearchtime|insubsequentcalls.Example:str=sprintf('This is a test.\nThis is line two.\nThis is line 3.')vlt.string.line_n(str,1)vlt.string.line_n(str,2)vlt.string.line_n(str,3)