LIspWorks 中的 SPLIT-SEQUENCE
简单拆分 IP 号码字符串。
> (lispworks:split-sequence "." "127.0.0.1")
("127" "0" "0" "1")
简单拆分 URL:
> (lispworks:split-sequence ".:/" "http://127.0.0.1/foo/bar.html"
:coalesce-separators t)
("http" "127" "0" "0" "1" "foo" "bar" "html")