Return a character from its codepoint.
Return a string containing a new line character.
Return a new string containing the character at the specified position.
Search the first occurrence in a string (return the position of the result, from the beginning of the string, or -1 if not found)
Search the first occurrence in a string, starting from a specified position (return the position of the result, from the beginning of the string, or -1 if not found)
Search the last occurrence in a string (return the position of the result, from the beginning of the string, or -1 if not found)
Search the last occurrence in a string, starting from a specified position (return the position of the result, from the beginning of the string, or -1 if not found)
Return the length of the string
Return the string repeated.
Return a new string with the content of str
where all occurrences of pattern
are replaced by replacement
.
Return a new string with the content of str
where the first occurrence of pattern
is replaced by replacement
.
Return a new string containing the substring of the original string.
Return the lowercased version of the string.
Return the uppercased version of the string.
Generated using TypeDoc
Tools related to strings manipulation, for events generated code.