SUBSTRING (string, start_pos, [NoOfChars])

Returns the string value of string, beginning in position start_pos.

Optional parameter NoOfChars defines how many characters to include. If the parameter is not given, all remaining characters are included.

 

Examples:

SubString('abcde', 3) returns 'cde'

SubString('abcde', 3, 1) returns 'c'

 

 

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.