English
Noun
substring
- a string of characters that is any subset of another string of characters
#computing a function of form substr(variable,start,length) that returns a contiguous substring of the specified variable from the start position, and of the length specified
#*Thus: substr("abcdef",3,2) returns "cd"
tr:substring
|