An open API service indexing awesome lists of open source software.

https://github.com/kazupon/stringbuffer4vb6

A fast string processing library.
https://github.com/kazupon/stringbuffer4vb6

Last synced: 7 months ago
JSON representation

A fast string processing library.

Awesome Lists containing this project

README

          

= StringBuffer Class

This class provides fast string of charactors.

= Author

kazuya kawaguchi (kawakazu80@gmail.com)

= Installation

1. Download the source repository from 'git@github.com:kazupon/StringBuffer4VB6.git'.

2. Add 'StringBuffer.cls' file on Visual Basic 6 project.

= Usage

Dim objStringBuffer As StringBuffer
Set objStringBuffer = New StringBuffer ' create object

Call objStringBuffer.Append("hello world.") ' append string
Call objStringBuffer.Appends("a", "b", "c") ' apeend strings
Call objStringBuffer.AppendLine("hello world.") ' append string + vbCrLf
Call objStringBuffer.AppendsLine(""a", "b", "c") ' append stirngs + vbCrLf

Dim strMessage As String
strMessage = objStringBuffer.ToString() ' buffered strings to string
Debug.Print strMessage

Call objStringBuffer.Clear ' clear buffered strings