The following are the string functions provided by this extension
Reverse the given input.
Determines whether the end of input string instance matches the search string. ignoreCase determines to ignore case or not.
Determines whether the start of input string instance matches the search string. ignoreCase determines to ignore case or not.
Returns a new string in which the insert string is inserted at a specified index position in the input.
Returns a string containing a specified number(length) of characters from the left side of the input.
Returns a string containing a specified number(length) of characters from the right side of the input.
Returns a new string in which all the characters in the input beginning at a specified position(startIndex) and continuing through the last position, have been deleted.
Returns a new string with all the duplicate characters removed.
Returns a new string in which a specified number of characters (count) in the input beginning at a specified position (startIndex) have been deleted.
Returns a new string in which all occurrences of a specified string (search) in the input are replaced with another specified (replace) string.
Returns a new string upper casing the first character of the input.