|
(defun $zi-chuan-fen-ge$ (str fgf / jg)
;字符串分割
(if (and str (= (type str) 'str) fgf (= (type fgf) 'str))
(progn
(setq str (vl-prin1-to-string str))
(while (wcmatch str (STRCAT "[,*`" FGF "*,]"))
(setq str (vl-string-subst "\"\"" fgf str))
)
(setq jg (read (strcat "(" str ")")))
)
)
jg
)
|
|