<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: String parsing with the LOOP facility</title>
	<atom:link href="http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/</link>
	<description>Leslie P. Polzer on code, music, literature, design and free software business.</description>
	<lastBuildDate>Fri, 09 Dec 2011 14:52:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: admin</title>
		<link>http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/comment-page-1/#comment-8</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 13 Dec 2007 19:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/#comment-8</guid>
		<description>Great, thanks!</description>
		<content:encoded><![CDATA[<p>Great, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zach Beane</title>
		<link>http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/comment-page-1/#comment-7</link>
		<dc:creator>Zach Beane</dc:creator>
		<pubDate>Thu, 13 Dec 2007 16:18:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.viridian-project.de/2007/12/13/string-parsing-with-the-loop-facility/#comment-7</guid>
		<description>LOOP&#039;s fun, but I think this particular task would look better with a simpler variation:


(defun read-lisp-string (input)
  (with-output-to-string (output)
    (loop
     (let ((char (read-char input)))
       (case char
         (#\\
          (setf char (read-char input)))
         (#\&quot;
          (return)))
       (write-char char output)))))


(Hope the formatting survives...)</description>
		<content:encoded><![CDATA[<p>LOOP&#8217;s fun, but I think this particular task would look better with a simpler variation:</p>
<p>(defun read-lisp-string (input)<br />
  (with-output-to-string (output)<br />
    (loop<br />
     (let ((char (read-char input)))<br />
       (case char<br />
         (#\\<br />
          (setf char (read-char input)))<br />
         (#\&#8221;<br />
          (return)))<br />
       (write-char char output)))))</p>
<p>(Hope the formatting survives&#8230;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

