String Class Extensions

Provides various extensions to the JavaScript String class.

Class Members

MemberDescription
htmlEncode HTML encodes an HTML string ensuring that HTML is displayed as text. Creates a div element assigns the text and then reads back the encoded HTML text.
o.String.htmlEncode()
extract Function that extracts a string from within another string based on two delimiters. The function operates case insensitively and the string returned by default returns the value between the first set…
o.String.extract(startDelim, endDelim, allowMissingEndDelim, returnDelims)
padL Pads a string to the left with the specified character.
o.String.padL(width,pad)
padR Pads a string on the right with a given pad character.
o.String.padR(width,pad)
format Provides a very simplistic C# like string.Format functionality. Note: This method is a static method on the string object, rather than an instance method: ```javascript var result =…
String.format(formatString)
repeat Static string extension that allows creating a repeated string. ```javascript var zeros = String.repeat("0",100); ```
String.repeat(chr,count)
startsWith Determines if a string starts with a given character substring.
o.String.startsWith(substr,nocase)
trimEnd Trims white space off the end of a string.
o.String.trimEnd()
trimStart Trims white space off the beginning of a string.
o.String.trimStart()

See also

Class String

© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic