common-lisp sequence - how to split a sequence SPLIT-SEQUENCE in LIspWorks

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Extensions
> Step 2: And Like the video. BONUS: You can also share it!

Example

Simple split of an IP number string.

> (lispworks:split-sequence "." "127.0.0.1")
  ("127" "0" "0" "1")

Simple split of an URL:

> (lispworks:split-sequence ".:/" "http://127.0.0.1/foo/bar.html"
                            :coalesce-separators t)
("http" "127" "0" "0" "1" "foo" "bar" "html")


Got any common-lisp Question?