<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>clicktx::Tech::Memo &#187; 正規表現</title>
	<atom:link href="http://perl.no-tubo.net/category/web%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%9f%e3%83%b3%e3%82%b0/%e6%ad%a3%e8%a6%8f%e8%a1%a8%e7%8f%be/feed/" rel="self" type="application/rss+xml" />
	<link>http://perl.no-tubo.net</link>
	<description>perl、 MySQL、オープンソース系、ウェブ系ネタ。なぜか鯖管メモがほとんどを占めている...</description>
	<lastBuildDate>Wed, 08 Feb 2012 00:06:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://perl.no-tubo.net/category/web%e3%83%97%e3%83%ad%e3%82%b0%e3%83%a9%e3%83%9f%e3%83%b3%e3%82%b0/%e6%ad%a3%e8%a6%8f%e8%a1%a8%e7%8f%be/feed/" />
		<item>
		<title>改行コードの変換</title>
		<link>http://perl.no-tubo.net/2006/10/31/%e6%94%b9%e8%a1%8c%e3%82%b3%e3%83%bc%e3%83%89%e3%81%ae%e5%a4%89%e6%8f%9b/</link>
		<comments>http://perl.no-tubo.net/2006/10/31/%e6%94%b9%e8%a1%8c%e3%82%b3%e3%83%bc%e3%83%89%e3%81%ae%e5%a4%89%e6%8f%9b/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 05:19:58 +0000</pubDate>
		<dc:creator>clicktx</dc:creator>
				<category><![CDATA[正規表現]]></category>

		<guid isPermaLink="false">http://pet.no-tubo.net/?p=23</guid>
		<description><![CDATA[改行コードはWin、Mac、UNIXとプラットフォームによって異なるがperl上では全て \n で統一されている。
改行コードを全て統一する
s/\x0D\x0A&#124;\x0D&#124;\x0A/\n/g;
改行コードを全て取り除く [...]]]></description>
			<content:encoded><![CDATA[<p>改行コードはWin、Mac、UNIXとプラットフォームによって異なるがperl上では全て \n で統一されている。</p>
<p>改行コードを全て統一する</p>
<pre>s/\x0D\x0A|\x0D|\x0A/\n/g;</pre>
<p>改行コードを全て取り除く</p>
<pre>s/\x0D\x0A|\x0D|\x0A//g;</pre>
<p>改行コードを全て &lt;BR&gt; に変換する</p>
<pre> s/\x0D\x0A|\x0D|\x0A/&lt;BR&gt;/g;</pre>
]]></content:encoded>
			<wfw:commentRss>http://perl.no-tubo.net/2006/10/31/%e6%94%b9%e8%a1%8c%e3%82%b3%e3%83%bc%e3%83%89%e3%81%ae%e5%a4%89%e6%8f%9b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://perl.no-tubo.net/2006/10/31/%e6%94%b9%e8%a1%8c%e3%82%b3%e3%83%bc%e3%83%89%e3%81%ae%e5%a4%89%e6%8f%9b/" />
	</item>
	</channel>
</rss>

