Contents - Index


COPY$

 

COPY$ creates a string that is a substring of the string expression provided as the first argument.  The second argument indicates the character position at which the substring starts, and the third parameter is the substring length.  If this length exceeds the length of the string expression, it is set to the length of the string expression.  

 

Example:  

Neat$=copy$('This is neat', 9, 255)  

{Solution:

Neat$='neat'

}

 

 

Return to String Functions