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'
Comments
Please sign in to leave a comment.