<?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>Worth Living &#187; Regexpクラス（正規表現）</title>
	<atom:link href="https://worthliv.com/category/ruby/ruby-regex/feed" rel="self" type="application/rss+xml" />
	<link>https://worthliv.com</link>
	<description>楽しく幸せに人生を送るためにはどうすれば良いのか？人生の要素をお金、仕事、勉強、プライベート、健康、心の6要素に分類して考察しています。プログラミング入門に関する記事も掲載。</description>
	<lastBuildDate>Wed, 09 Mar 2016 04:20:46 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/category/ruby/ruby-regex/feed" />
	<item>
		<title>scanメソッド</title>
		<link>https://worthliv.com/ruby_scan.html</link>
		<comments>https://worthliv.com/ruby_scan.html#comments</comments>
		<pubDate>Fri, 28 Jun 2013 15:19:25 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[Regexpクラス（正規表現）]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1176</guid>
		<description><![CDATA[scanメソッドは、gsubメソッドのように、文字列中のすべてのマッチする部分を検索し、取り出します。 gsubメソッドとの違いは、検索してマッチした部分を取り出すだけで、置換は行わないという点です。 マッチした部分に対 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/ruby_scan.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/ruby_scan.html" />
	</item>
		<item>
		<title>sub, gsubメソッドで置換を行う</title>
		<link>https://worthliv.com/ruby_sub_gsub.html</link>
		<comments>https://worthliv.com/ruby_sub_gsub.html#comments</comments>
		<pubDate>Fri, 28 Jun 2013 14:45:47 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[Regexpクラス（正規表現）]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1175</guid>
		<description><![CDATA[subメソッド、gsubメソッドで、正規表現により文字列中のマッチした部分を、別の文字列へと置き換えることができます。 subは、最初にマッチした部分の置換、gsubは、すべてのマッチした部分を置き換えます。 スポンサー [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/ruby_sub_gsub.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/ruby_sub_gsub.html" />
	</item>
		<item>
		<title>最短マッチ・貪欲じゃなくする</title>
		<link>https://worthliv.com/ruby_post_37.html</link>
		<comments>https://worthliv.com/ruby_post_37.html#comments</comments>
		<pubDate>Wed, 26 Jun 2013 11:40:31 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[Regexpクラス（正規表現）]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1171</guid>
		<description><![CDATA[正規表現では、色々な記号が使われますが、それぞれの記号の意味は以下のRubyリファレンスが参考になります。 スポンサーリンク 正規表現 &#8211; Rubyリファレンスマニュアル Rubyの正規表現は、Perlとほと [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/ruby_post_37.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/ruby_post_37.html" />
	</item>
		<item>
		<title>=~メソッドでRuby正規表現のパターンマッチング</title>
		<link>https://worthliv.com/ruby_ruby_6.html</link>
		<comments>https://worthliv.com/ruby_ruby_6.html#comments</comments>
		<pubDate>Wed, 26 Jun 2013 08:05:16 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[Regexpクラス（正規表現）]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1169</guid>
		<description><![CDATA[Rubyの正規表現では、Perlと同じ正規表現が使えます。 「=~」メソッドを用いて、以下のようにパターンマッチングを行います。 スポンサーリンク 正規表現 =~ 文字列 Perlの書き方と比べますと、Rubyは左辺と右 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/ruby_ruby_6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/ruby_ruby_6.html" />
	</item>
		<item>
		<title>正規表現でのパターンマッチ</title>
		<link>https://worthliv.com/ruby_post_6.html</link>
		<comments>https://worthliv.com/ruby_post_6.html#comments</comments>
		<pubDate>Thu, 20 Jun 2013 20:35:26 +0000</pubDate>
		<dc:creator><![CDATA[wovethng]]></dc:creator>
				<category><![CDATA[Regexpクラス（正規表現）]]></category>

		<guid isPermaLink="false">http://localhost/web/tenacity.xsrv.jp/easyramble.com/public_html/?p=1112</guid>
		<description><![CDATA[Perlが得意とする正規表現も、Rubyは受け継いでいます。 RubyとPerlは、どうやらお互いに良いとこ取りしてるような感じです。 Perlで正規表現に慣れていれば、Rubyの正規表現も簡単だろうと思います。（私は正 [&#8230;]]]></description>
		<wfw:commentRss>https://worthliv.com/ruby_post_6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="https://worthliv.com/ruby_post_6.html" />
	</item>
	</channel>
</rss>
