Here are some typical string manipulation tasks you can do in Querri
String Splitting:
-
Split by a Specific Character
- e.g., "Split the text in {column} by comma to extract individual values."
-
Split by Spaces
- e.g., "Divide the sentence in {column} into individual words."
-
Split by Newlines
- e.g., "Separate lines in the text document."
White Space Handling:
-
Remove Leading and Trailing Spaces
- e.g., "Get rid of any extra spaces at the beginning and end of the text in {column}."
-
Replace White Spaces
- e.g., "Replace spaces with hyphens in {column}"
-
Join Multiple Strings with Spaces
- e.g., "Combine words or elements in {column} into a single string with spaces in between."
String Modification:
-
Change to Uppercase or Lowercase
- e.g., "Convert text in {column} to all uppercase."
- e.g., "Convert text in {column} to all lowercase."
-
Capitalize First Letter
- e.g., "Make the first letter of a sentence or phrase uppercase in {column}."
-
Title Case
- e.g., "Capitalize the first letter of each word in a text in {column}."
-
Extract Substrings
- e.g., "Take a specific portion of the text in {column}."
Regular Expressions:
-
Find a Pattern
- e.g., "Search for a particular pattern or keyword in the text in {column}."
-
Replace Using Patterns
- e.g., "Replace occurrences of a specific pattern with another text."
-
Extract Groups Matching a Pattern
- e.g., "Retrieve all instances of a specific pattern from the text in {column}."
-
Split Using Regular Expressions
- e.g., "Separate the text based on a custom pattern using regular expressions in {column}."
Stripping and Padding:
-
Zero Padding for Numbers
- e.g., "Add leading zeros to numeric strings to match a desired width in {column}."