๐๏ธ Character.FromNumber
Converts a number to a text character.
๐๏ธ Character.ToNumber
Converts a character to a number value.
๐๏ธ Guid.From
Returns a guid value from the given value.
๐๏ธ Text.AfterDelimiter
Text.AfterDelimiter
๐๏ธ Text.At
Returns the character at the specified position.
๐๏ธ Text.BeforeDelimiter
Text.BeforeDelimiter
๐๏ธ Text.BetweenDelimiters
Text.BetweenDelimiters
๐๏ธ Text.Clean
Returns the text value with all control characters removed.
๐๏ธ Text.Combine
Concatenates a list of text values into one text value.
๐๏ธ Text.Contains
Returns whether the text contains the substring.
๐๏ธ Text.End
Returns the last characters of the text.
๐๏ธ Text.EndsWith
Indicates whether the text ends in the specified value.
๐๏ธ Text.Format
Returns formatted text from a format string and arguments.
๐๏ธ Text.From
Creates a text value from the given value.
๐๏ธ Text.FromBinary
Decodes data from a binary form into text.
๐๏ธ Text.InferNumberType
Infers the granular number type (Int64.Type, Double.Type, and so on) of a number encoded in text.
๐๏ธ Text.Insert
Inserts one text value into another at a given position.
๐๏ธ Text.Length
Returns the number of characters.
๐๏ธ Text.Lower
Converts all characters to lowercase.
๐๏ธ Text.Middle
Returns the substring up to a specific length.
๐๏ธ Text.NewGuid
Returns a new, random globally unique identifier (GUID).
๐๏ธ Text.PadEnd
Returns text of a specified length by padding the end of the given text.
๐๏ธ Text.PadStart
Returns text of a specified length by padding the start of the given text.
๐๏ธ Text.PositionOf
Returns the first position of the value (-1 if not found).
๐๏ธ Text.PositionOfAny
Returns the first position in the text value of any listed character (-1 if not found).
๐๏ธ Text.Proper
Capitalizes the first letter of each word.
๐๏ธ Text.Range
Returns the substring found at offset.
๐๏ธ Text.Remove
Removes all occurrences of the given character or list of characters from the input text value.
๐๏ธ Text.RemoveRange
Removes a count of characters starting at the given offset
๐๏ธ Text.Repeat
Returns a text value composed of the input text repeated a specified number of times.
๐๏ธ Text.Replace
Replaces all occurrences of the given substring in the text.
๐๏ธ Text.ReplaceRange
Removes a range of characters and inserts a new value at a specified position.
๐๏ธ Text.Reverse
Text.Reverse
๐๏ธ Text.Select
Selects all occurrences of the given character or list of characters from the input text value.
๐๏ธ Text.Split
Splits text into a list of text values based upon a specified delimiter.
๐๏ธ Text.SplitAny
Returns a list of text values, split on any of the characters in the delimiter.
๐๏ธ Text.Start
Returns the start of the text.
๐๏ธ Text.StartsWith
Indicates whether the text starts with a specified value.
๐๏ธ Text.ToBinary
Encodes text into a binary form.
๐๏ธ Text.ToList
Returns a list of character values from the given text value.
๐๏ธ Text.Trim
Removes all leading and trailing whitespace.
๐๏ธ Text.TrimEnd
Removes all trailing whitespace.
๐๏ธ Text.TrimStart
Removes all leading whitespace.
๐๏ธ Text.Upper
Converts all characters to uppercase.
๐๏ธ Value.FromText
Creates a strongly-typed value from a textual representation.