Description | The |
Syntax | LEFT_SUBSTR( |
Output | text |
Variables
text
: The input text string from which you want to extract characters.number
: The number (length) of characters to extract from the left side of the text.
Example
LEFT_SUBSTR(`Text`,5)
ID | Text | LEFT_SUBSTR |
1 | Hello, World! | Hello |
2 | Example Text | Examp |
3 | Savant Analytics | Savan |