Input String | Text string. |
Starting Position | Integer value that determines the starting point of the substring. |
Length | Integer value that designates the number of characters in the substring. |
Function | STR_SUBSTR ("This is one string", 9, 8) |
Result | one stri |
Function | STR_SUBSTR ("This is a string", -1000, 100) |
Result | returns the original string, since the values are out of range |