String Functions by Reference System
December 16, 2025 ยท View on GitHub
Reference Systems
- [Alteryx]
- [Sql Down Under]
- [SQL Server]
Alteryx
Contains(String, Target, CaseInsensitive=1)CountWords(String)DecomposeUnicodeForMatch(String)EndsWith(String, Target, CaseInsensitive=1)FindString(String,Target)GetWord(String, n)Left(x, len)Length(x)LowerCase(x)MD5_ASCII(String)MD5_UNICODE(String)PadLeft (str, len, char)PadRight (str, len, char)REGEX_CountMatches(string,pattern,icase)REGEX_Match(string,pattern,icase)REGEX_Replace(string, pattern, replace,icase)Replace(Str, Target, Replacement)ReplaceChar(x, y, z)ReplaceFirst(Str, Target, Replacement)ReverseString(Str)Right(String, len)StartsWith(String, Target, CaseInsensitive=1)STRCSPN(x, y)StripQuotes(x)STRSPN(x, y)Substring(x, start, length)TitleCase(x)Trim(x, y)TrimLeft(x, y)TrimRight(x, y)Uppercase(x) Converts a string to upper caseUuidCreate()
Sql Down Under
AlphabeticOnly- Removes any non-alphabetic characters from a stringAlphanumericOnly- Removes any non-alphanumeric characters from a stringAsciiOnly- Removes non-ASCII characters from a stringCamelCase- Converts a string to camelCaseCobolCase- Converts a string to COBOL-CASECountWords- Counts the number of words in a stringDigitsOnly- Removes non-digit characters from a stringExtractToken- Extracts a specific token number from a delimited string like a CSV or TSVExtractTrigrams- Extracts trigrams (segments of up to 3 characters) from a string for fast searchingExtractTrimmedWords- Extracts words from a string and trims themInitialsFromName- Extracts a person's initials from their nameInvertString- Returns an upside down version of the stringKebabCase- Converts a string to kebab-caseLeftPad- Left pads a stringNullIfBlank- Returns NULL if a string is blank or trims the stringPascalCase- Converts a string to PascalCasePercentEncode- Encodes reserved characters that are used in HTML or URL encodingPreviousNonWhitespaceCharacter- Finds the previous non-whitespace character working backwards from the current positionProperCase- Converts a string to Proper CaseQuoteString- Quotes a stringRightPad- Right pads a stringScreamingSnakeCase- Converts a string to SCREAMING_SNAKE_CASESeparateByCase- Inserts spaces in Pascal-cased or camel-cased stringsSingleSpaceWords- Trims a string and replaces multiple spaces with single spacesSnakeCase- Converts a string to snake_caseSplitDelimitedString- Splits a delimited string (often CSV or TSV)SplitDelimitedStringIntoColumns- Splits a delimited string (often CSV or TSV) into separate columnsSpongeBobSnakeCase- Converts a string to sPoNgEbOb_sNaKeCaSeStringLength- Returns the length of a string (Properly)StripDiacritics- Strips diacritics (accents, graves, etc.) from a stringTitleCase- Converts a string to Title CaseTrainCase- Converts a string to Train-CaseTranslate- Replaces a set of characters in a stringTrimWhitespace- Removes any leading or trailing space, tab, carriage return, and linefeed charactersXMLDecodeString- XML decodes a stringXMLEncodeString- XML encodes a string
Sql Server
ASCIIReturns the ASCII value for the specific characterCHARReturns the character based on the ASCII codeCHARINDEXReturns the position of a substring in a stringCONCATAdds two or more strings togetherConcat with +Adds two or more strings togetherCONCAT_WSAdds two or more strings together with a separatorDATALENGTHReturns the number of bytes used to represent an expressionDIFFERENCECompares two SOUNDEX values, and returns an integer valueFORMATFormats a value with the specified formatLEFTExtracts a number of characters from a string (starting from left)LENReturns the length of a stringLOWERConverts a string to lower-caseLTRIMRemoves leading spaces from a stringNCHARReturns the Unicode character based on the number codePATINDEXReturns the position of a pattern in a stringQUOTENAMEReturns a Unicode string with delimiters added to make the string a valid SQL Server delimited identifierREPLACEReplaces all occurrences of a substring within a string, with a new substringREPLICATERepeats a string a specified number of timesREVERSEReverses a string and returns the resultRIGHTExtracts a number of characters from a string (starting from right)RTRIMRemoves trailing spaces from a stringSOUNDEXReturns a four-character code to evaluate the similarity of two stringsSPACEReturns a string of the specified number of space charactersSTRReturns a number as stringSTUFFDeletes a part of a string and then inserts another part into the string, starting at a specified positionSUBSTRINGExtracts some characters from a stringTRANSLATEReturns the string from the first argument after the characters specified in the second argument are translated into the characters specified in the third argument.TRIMRemoves leading and trailing spaces (or other specified characters) from a stringUNICODEReturns the Unicode value for the first character of the input expressionUPPERConverts a string to upper-case