Edge Rewrite
// HTMLRewriter · presentation

This page was redesigned at the edge.

Cloudflare fetched the original article and streamed it through HTMLRewriter to apply an entirely new visual system without rebuilding the source page.

// request.cf · coarse context

A page that knows where it met you.

Only coarse request metadata is shown. This demo does not display or persist visitor IP addresses.

Country
US
Cloudflare location
CMH
Connection
HTTP/2
Language
Not provided

Ray ID: a2341bcf2f2026b9

Jump to content

Module:Sandbox/TiiJ7/StringBuilder/doc

From Wikipedia, the free encyclopedia

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.

Usage

[edit]

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]

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]

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

appendAll (aa)

[edit]

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

clear (c)

[edit]

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]

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]

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]
-- 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>"