Module:Sandbox/TiiJ7/StringBuilder/doc

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

StringBuilder is a simple module that can be used to concatenate many strings into one bigger string. It stores all strings in a table and then concatenates them all in one go. This is more efficient than concatenating strings manually. For small strings however, the difference is negligible, so you should use the StringBuilder for building enormous string only.

This module should only be used in other modules, rather than being invoked.

local StringBuilder = require('Module:Sandbox/TiiJ7/StringBuilder')

local sb = StringBuilder.new()

sb:append('This')
sb:appendAll(' is',' a',' test')

tostring(sb) -- "This is a test"

Method overview

[edit source]

Below are the available methods for the StringBuilder. They should be called with the colon syntax.

Most methods have a name shortcut, which is listed between brackets.

All methods also return the same StringBuilder, so you can use method chaining.

append (a)

[edit source]

Appends a single string to the builder.
Example: sb:append('Some'):append(' string') -- "Some string"

appendAll (aa)

[edit source]

Appends multiple strings, separated by commas.
Example: sb:appendAll('A',' series',' of',' strings') -- "A series of strings"

clear (c)

[edit source]

Resets the builder (erases all strings from internal buffer). Make sure to take a tostring before you clear the builder if needed!
Example: sb:append('Old text'):clear():append('New text') -- "New text"

setMode (m)

[edit source]

Changes the mode of the StringBuilder. The mode decides what will happen if the user tries to append a non-string and non-number:

  • convert (default) - Converts the argument to a string by calling tostring() on it.
  • ignore - Simply ignores invalid values and doesn't append them.
  • error -- Raises a Lua error, effectively stopping the script unless handled with pcall. Should be used for debugging only.

Example: sb:setMode('ignore'):append('My table: '):append({}) -- "My table: "

setSeparator (s)

[edit source]

Changes the separator with which the strings are concatenated (by default the empty string '').
Example: sb:setSeparator(','):appendAll('comma','separated','list') -- "comma,separated,list"

Examples

[edit source]
-- Building a simple XML element:
local elem = { tag = 'foo', name = 'bar', content = 'baz' }
local sb = StringBuilder.new()

-- method 1 (append):
sb:a('<'):a(elem.tag):a('name="'):a(elem.name):a('">')
    :a(elem.content):a('</'):a(elem.tag):a('>') -- "<foo name="bar">baz</text>"

-- method 2 (appendAll):
sb:aa('<', elem.tag, 'name="', elem.name, '">', elem.content, '</', elem.tag, '>') -- "<foo name="bar">baz</text>"