Login
|
Sign Up
AutoLISP Function Detail
Name:
subst
Syntax:
(subst
new old list
)
Description:
Replaces each and every occurrence of the old item with the new item in the list.
Example(s):
(subst 'a 'b '(a b c d))
(A A C D)