From ... From: Erik Naggum Subject: Re: String manipulation Date: 1999/10/29 Message-ID: <3150161272751691@naggum.no>#1/1 X-Deja-AN: 541932425 References: <3818753E.D752BD24@uwaterloo.ca> mail-copies-to: never X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 941172475 852 195.0.192.66 (29 Oct 1999 04:47:55 GMT) Organization: Naggum Software; +47 8800 8879; +1 510 435 8604; http://www.naggum.no NNTP-Posting-Date: 29 Oct 1999 04:47:55 GMT Newsgroups: comp.lang.lisp * Michael Abd-El-Malek | Is there such a function that can search strings and give me indexes | based on character positions? see the functions SEARCH, FIND, POSITION. they operate on sequences, which forms the supertype of list, vector, array, and string. you won't find all that many functions specific to strings in Common Lisp, because most of the time, they're useful to all sorts of sequences. this also means you use SUBSEQ to extract substrings, and COPY-SEQ to copy strings. #:Erik