TextPlugin Class

Definition

TextPlugin provides a set of functions to manipulate strings.

public sealed class TextPlugin
type TextPlugin = class
Public NotInheritable Class TextPlugin
Inheritance
TextPlugin

Constructors

TextPlugin()

Methods

Concat(String, String)

Concatenate two strings into one

Echo(String)

Echo the input string. Useful for capturing plan input for use in multiple functions.

Length(String)

Get the length of a string. Returns 0 if null or empty

Lowercase(String, CultureInfo)

Convert a string to lowercase.

Trim(String)

Trim whitespace from the start and end of a string.

TrimEnd(String)

Trim whitespace from the end of a string.

TrimStart(String)

Trim whitespace from the start of a string.

Uppercase(String, CultureInfo)

Convert a string to uppercase.

Applies to