Comprehensive collection of MySQL string manipulation functions including LENGTH(), UPPER(), LOWER(), TRIM(), and SUBSTRING().
Concatenate two or more strings into a single string.
Return a single string by concatenating multiple strings separated by a specified separator.
Return the position of the first occurrence of a substring in a string.
Get the length of a string in bytes.
Return the length of a string measured in characters.
Get a specified number of leftmost characters from a string.
Return a string converted to lowercase.
Return the position of a substring within a given string starting at a specified position.
Remove all leading spaces from a string.
Replace all occurrences of a substring in a string with a new one.
Repeat a string a specified number of time.
Reverse a string.
Get a specified number of rightmost characters from a string.
Remove all trailing spaces from a string.
Extract a substring starting from a position with a specific length.
Return a substring from a string before a specified number of occurrences of a delimiter.
Remove unwanted characters from a string.
Find a string within a comma-separated list of strings.
Format a number with a specific locale, rounded to the number of decimals.
Convert a string to uppercase.