字符串截取,连接函数
SUBSTRING string start &key end ==>子串
使用 format 函数进行字符串连接操作:
CL> (format nil "~a~a" "ab" "cd")
"abcd"
还可以直接调用C 库的方法。
取字符串的字符函数:
char string index ==> character
schar string index ==> character
取字符串string 中第 index 位的字符。
相关函数: elt sequence index 序列中的 index 位的对象
(setq str (copy-seq "0123456789")) ==> "0123456789"
(setf (elt str 0) #\#) ==> #\# 替换了0为 #
相关函数: aref array &rest subscripts ==> element
取得数组中的一个元素
(char s j) == (aref (the string s) j)