<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">
<br>
</div>What error are you getting?<br>
<div class="im"><br></div></blockquote><div>[1]> (require :cl-ppcre)</div><div><br></div><div>*** - LOAD: A file with name CL-PPCRE does not exist</div><div>The following restarts are available:</div><div>ABORT          :R1      Abort main loop </div>
<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">
> Maybe i just don't know how to use library in lisp, and i'm using<br>
> clisp.<br>
<br>
</div>Once you have a library installed, it should be this easy:<br>
<br>
  cl-user> (require :cl-ppcre)<br> </blockquote><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
If that's generating an error, it's possible that the Debian package has<br>
problems.  You could try using ASDF-INSTALL to install it:<br>
<br>
  cl-user> (require :asdf-install)<br>
  cl-user> (asdf-install:install :cl-ppcre)<br>
<br></blockquote><div>Yes, after i use asdf-install and asdf:load-system, i can use it, still how asdf works...</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Or you could try using Quicklisp:<br>
<br>
  $ wget <a href="http://beta.quicklisp.org/quicklisp.lisp" target="_blank">http://beta.quicklisp.org/quicklisp.lisp</a><br>
  $ clisp<br>
  cluser> (load "quicklisp.lisp")<br>
  cluser> (ql:quickload :cl-ppcre<br>)<br><font class="Apple-style-span" color="#888888"><br></font></blockquote><div> I will have a try, thanks for your response.</div></div>