# Functions
ArrToString converts an array of strings to a printable string.
DBracket wraps the string in double brackets - [[]].
DChevrons wraps the string in double chevrons - <<>>.
DCurlies wraps the string in double curlies - {{}}.
Decode decodes a base64 encoded string.
DecodeString decodes a base64 encoded string - same as Decode Deprecated: Use Decode instead.
DParentheses wraps the string in double Parentheses - (()).
DQuote wraps the string in double quotes - "".
Encode encodes a string to base64.
EncodeString encodes a string to base64 - same as Encode Deprecated: Use Encode instead.
Lowers the first character of a string.
The function "MakeStringDisplayable" takes a string as input and returns a modified version of the string that is displayable.
The function "MakeStringStorable" takes a string as input and returns a storable version of the string.
PadLeft pads a string on the left.
PadRight pads a string on the right.
RemoveSpecialChars removes special characters from a string and replaces them with a dash.
ReplaceWildcard replaces a wildcard {{wildcard}} with a given string.
SBracket wraps the string in square brackets - [].
SChevrons wraps the string in single chevrons - <>.
SCurlies wraps the string in single curlies - {}.
SParentheses wraps the string in single Parentheses - ().
SQuote wraps the string in single quotes - ”.
StrArrayToString converst a string array into a string.
StrArrayToStringWithSep converts a string array to a string using a given separator.