Visual FoxPro
Visual FoxPro
Get the Last N Lines of a StringBuilder
Returns up to the last N lines of the contents of a Chilkat StringBuilder.Chilkat Visual FoxPro Downloads
LOCAL loSb
LOCAL i
LOCAL lnBCrlf
loSb = CreateObject('Chilkat.StringBuilder')
i = 1
DO WHILE i < 100
loSb.Append("This is line number ")
loSb.AppendInt(i)
loSb.Append(CHR(13) + CHR(10))
i = i + 1
ENDDO
lnBCrlf = 1
? loSb.LastNLines(12,lnBCrlf)
* Output is:
*
* This is line number 88
* This is line number 89
* This is line number 90
* This is line number 91
* This is line number 92
* This is line number 93
* This is line number 94
* This is line number 95
* This is line number 96
* This is line number 97
* This is line number 98
* This is line number 99
*
RELEASE loSb