Sample code for 30+ languages & platforms
Visual Basic 6.0

Get the Last N Lines of a StringBuilder

Returns up to the last N lines of the contents of a Chilkat StringBuilder.

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
Dim sb As New ChilkatStringBuilder

Dim i As Long
i = 1
Do While i < 100
    success = sb.Append("This is line number ")
    success = sb.AppendInt(i)
    success = sb.Append(vbCrLf)
    i = i + 1
Loop

Dim bCrlf As Long
bCrlf = 1
Debug.Print sb.LastNLines(12,bCrlf)

' 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
'