Functionsยง
- enclose_
quotes - Encloses a string in single quotes for SQL string literals.
- escape_
sql - Escapes special characters in a SQL string by replacing backslashes with double backslashes and single quotes with double single quotes.
- has_
contain_ words - Checks if any of the given words are present in the source string as whole words.
- is_
contain_ word - Checks if a given word is present in the source string as a whole word, ignoring case.
- replace_
multiple_ placeholders - Replaces multiple placeholders in a string using a map of placeholder-value pairs.
- replace_
placeholder - Replaces placeholders in a string with specified replacement values.
- to_
array - Converts a comma-separated string into a vector of strings.