Subject: Re: character Comparison
From: Erik Naggum <erik@naggum.no>
Date: 2000/02/20
Newsgroups: comp.lang.lisp
Message-ID: <3160029562363276@naggum.no>

* "Chris H" <newsgroupNOJUNK@NOJUNKhome.com>
| how do I check if  character 'a' is in word 'banada'
| 
| is any thing like substring() function ?

  yes.  FIND, POSITION, SEARCH, CHAR, SUBSEQ, etc.

  note that most operations on characters and strings in Common Lisp are
  simply special cases of operations on elements and sequences.  many
  C-based programmers are frustrated because they think that Common Lisp
  has few string-handling functions.  Common Lisp has few string-only
  functions, so remember to look for sequence and array functions, too.

#:Erik