Login | Sign Up
 





 
AutoLISP Function Detail
Name: substr

Syntax:
(substr str start [length])

Description:
Returns the remainder of the string from the starting point to the end of the string if no length is given or to the number of characters to the right from the start point.

Example(s):
(substr "Hello World!" 1 5)
"Hello"

(substr "Hello World!" 7)
"World!"