<?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>“普罗之家” 的评论</title>
	<atom:link href="http://www.procty.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.procty.com</link>
	<description>放松……放松……虚领顶劲、含胸拔背，心神内敛、存想自然…………</description>
	<lastBuildDate>Thu, 13 May 2010 01:53:13 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>mousebomb 关于 厚黑之我见 的评论</title>
		<link>http://www.procty.com/?p=148&#038;cpage=1#comment-19</link>
		<dc:creator>mousebomb</dc:creator>
		<pubDate>Thu, 13 May 2010 01:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.procty.com/?p=148#comment-19</guid>
		<description>哇哈哈，你看易经，易经里面也有“厚黑”。</description>
		<content:encoded><![CDATA[<p>哇哈哈，你看易经，易经里面也有“厚黑”。</p>
]]></content:encoded>
	</item>
	<item>
		<title>shguo 关于 快过年了 的评论</title>
		<link>http://www.procty.com/?p=136&#038;cpage=1#comment-10</link>
		<dc:creator>shguo</dc:creator>
		<pubDate>Wed, 03 Feb 2010 05:06:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.procty.com/index.php/2010/01/136/#comment-10</guid>
		<description>别不干</description>
		<content:encoded><![CDATA[<p>别不干</p>
]]></content:encoded>
	</item>
	<item>
		<title>开心凡人 关于 24号AS聚会所得。 的评论</title>
		<link>http://www.procty.com/?p=141&#038;cpage=1#comment-9</link>
		<dc:creator>开心凡人</dc:creator>
		<pubDate>Wed, 27 Jan 2010 12:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.procty.com/?p=141#comment-9</guid>
		<description>忙里偷闲，四处游荡，呵呵</description>
		<content:encoded><![CDATA[<p>忙里偷闲，四处游荡，呵呵</p>
]]></content:encoded>
	</item>
	<item>
		<title>普罗 关于 lua utf-8 字符串操作 的评论</title>
		<link>http://www.procty.com/?p=61&#038;cpage=1#comment-8</link>
		<dc:creator>普罗</dc:creator>
		<pubDate>Tue, 26 Jan 2010 09:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://447486.446.webhosting-test.com/?p=61#comment-8</guid>
		<description>本文的做法目的是为字符串过滤操作做准备的，不过是不是真的适合我还没有答案。
研究一下即可，若对你有帮助，那我很高兴。</description>
		<content:encoded><![CDATA[<p>本文的做法目的是为字符串过滤操作做准备的，不过是不是真的适合我还没有答案。<br />
研究一下即可，若对你有帮助，那我很高兴。</p>
]]></content:encoded>
	</item>
	<item>
		<title>freeda 关于 lua utf-8 字符串操作 的评论</title>
		<link>http://www.procty.com/?p=61&#038;cpage=1#comment-7</link>
		<dc:creator>freeda</dc:creator>
		<pubDate>Tue, 19 Jan 2010 09:44:35 +0000</pubDate>
		<guid isPermaLink="false">http://447486.446.webhosting-test.com/?p=61#comment-7</guid>
		<description>解决了charAt支持负数索引

function utf8_charAt(utf_table , index)
    local chr = nil ;
	n=table.getn(utf_table);
    if index =0 then
        chr = utf_table[index] ;
	else
		chr = utf_table[math.abs(n+index)+1] ;
    end ;
    return chr ;
end ;</description>
		<content:encoded><![CDATA[<p>解决了charAt支持负数索引</p>
<p>function utf8_charAt(utf_table , index)<br />
    local chr = nil ;<br />
	n=table.getn(utf_table);<br />
    if index =0 then<br />
        chr = utf_table[index] ;<br />
	else<br />
		chr = utf_table[math.abs(n+index)+1] ;<br />
    end ;<br />
    return chr ;<br />
end ;</p>
]]></content:encoded>
	</item>
	<item>
		<title>freeda 关于 lua utf-8 字符串操作 的评论</title>
		<link>http://www.procty.com/?p=61&#038;cpage=1#comment-6</link>
		<dc:creator>freeda</dc:creator>
		<pubDate>Tue, 19 Jan 2010 09:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://447486.446.webhosting-test.com/?p=61#comment-6</guid>
		<description>charAt对负数的处理有问题</description>
		<content:encoded><![CDATA[<p>charAt对负数的处理有问题</p>
]]></content:encoded>
	</item>
	<item>
		<title>freeda 关于 lua utf-8 字符串操作 的评论</title>
		<link>http://www.procty.com/?p=61&#038;cpage=1#comment-5</link>
		<dc:creator>freeda</dc:creator>
		<pubDate>Tue, 19 Jan 2010 03:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://447486.446.webhosting-test.com/?p=61#comment-5</guid>
		<description>搞定了，你这个必须是针对utf8编码的lua文件才行</description>
		<content:encoded><![CDATA[<p>搞定了，你这个必须是针对utf8编码的lua文件才行</p>
]]></content:encoded>
	</item>
	<item>
		<title>freeda 关于 lua utf-8 字符串操作 的评论</title>
		<link>http://www.procty.com/?p=61&#038;cpage=1#comment-4</link>
		<dc:creator>freeda</dc:creator>
		<pubDate>Tue, 19 Jan 2010 03:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://447486.446.webhosting-test.com/?p=61#comment-4</guid>
		<description>你自己测试真的正确吗？在我的5.1下测试结果不正确。</description>
		<content:encoded><![CDATA[<p>你自己测试真的正确吗？在我的5.1下测试结果不正确。</p>
]]></content:encoded>
	</item>
</channel>
</rss>
