Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Which Lisp?

Name: Anonymous 2007-09-08 21:55 ID:7QBku6tH

Question for you Lispfags; I'm checking out Common Lisp, and I'm finding it's lacking even the most rudimentary convenience string handling functions, like split. This disappoints me. You promise me the world, and yet I get stuck back in the 70's, writing yet another string library.
So, is there something akin to a 'modern' Lisp? I'm talking library/module functionality, unicode handling, and generally 'batteries included'.

Name: Anonymous 2007-09-10 9:00 ID:Y+a5PNDx

>>1
CL-PPCRE, without which any string handling in CL is kinda pointless, includes a split function, appropriately called SPLIT.

(require :cl-ppcre)
(use-package :cl-ppcre)

(split " " "foo bar baz")

==> ("foo" "bar" "baz")

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List