<?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>ActionScript 3 での色々な文字列の扱い方 へのコメント</title>
	<atom:link href="http://unbland.org/blog/2008/10/28/167.html/feed" rel="self" type="application/rss+xml" />
	<link>http://unbland.org/blog/2008/10/28/167.html</link>
	<description>発見の日々の備忘録。主に Web にまつまる技術ネタ。</description>
	<lastBuildDate>Wed, 10 Jun 2009 08:28:00 +0900</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>admin より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-174</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 05 Jun 2009 02:54:49 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-174</guid>
		<description>&gt; naoto5959 さん
コメントありがとうございます。
ExternalInterface.call 使う時にはかなり重宝できます。
FD ならコード補完も効きますし（AS 側のですが）。</description>
		<content:encoded><![CDATA[<p>> naoto5959 さん<br />
コメントありがとうございます。<br />
ExternalInterface.call 使う時にはかなり重宝できます。<br />
FD ならコード補完も効きますし（AS 側のですが）。</p>
]]></content:encoded>
	</item>
	<item>
		<title>naoto5959 より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-173</link>
		<dc:creator>naoto5959</dc:creator>
		<pubDate>Fri, 05 Jun 2009 01:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-173</guid>
		<description>先日、unbland as3 libraryのソースコードを
拝見致しましたところ、この記述を見てかなり興奮しました。

CDATA セクション、jsとの連携時に活躍しそうですね。</description>
		<content:encoded><![CDATA[<p>先日、unbland as3 libraryのソースコードを<br />
拝見致しましたところ、この記述を見てかなり興奮しました。</p>
<p>CDATA セクション、jsとの連携時に活躍しそうですね。</p>
]]></content:encoded>
	</item>
	<item>
		<title>admin より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-153</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 17 Feb 2009 02:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-153</guid>
		<description>覚えるとかなり便利だと思いますよー。
ショボいブログですが、今後ともよろしくお願いします！</description>
		<content:encoded><![CDATA[<p>覚えるとかなり便利だと思いますよー。<br />
ショボいブログですが、今後ともよろしくお願いします！</p>
]]></content:encoded>
	</item>
	<item>
		<title>ひろ より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-152</link>
		<dc:creator>ひろ</dc:creator>
		<pubDate>Mon, 16 Feb 2009 19:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-152</guid>
		<description>ありがとうございます！
変数を扱う場合には一手間入りますが、それでも便利なことには違いありませんね。</description>
		<content:encoded><![CDATA[<p>ありがとうございます！<br />
変数を扱う場合には一手間入りますが、それでも便利なことには違いありませんね。</p>
]]></content:encoded>
	</item>
	<item>
		<title>admin より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-151</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 15 Feb 2009 15:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-151</guid>
		<description>CDATA セクションは文字列として扱われるので、&lt;![CDATA[]]&gt; + variables + &lt;![CDATA[]]&gt; のようにすれば大丈夫です。ただ、&quot;&quot; での文字列連結に比べると見にくいです。あと、上記例みたいに ExternalInterface.call とかで CDATA セクションを使う場合には、改行・タブなどが入ると JS とのやりとり時にデータが多くなってしまいます。ですので、String().replace(/\t&#124;[ ]{4}/gm, &quot;&quot;) など正規表現で余分なものを取り除いた方が良いかもしれません。</description>
		<content:encoded><![CDATA[<p>CDATA セクションは文字列として扱われるので、&lt;![CDATA[]]&gt; + variables + &lt;![CDATA[]]&gt; のようにすれば大丈夫です。ただ、&#8221;" での文字列連結に比べると見にくいです。あと、上記例みたいに ExternalInterface.call とかで CDATA セクションを使う場合には、改行・タブなどが入ると JS とのやりとり時にデータが多くなってしまいます。ですので、String().replace(/\t|[ ]{4}/gm, &#8220;&#8221;) など正規表現で余分なものを取り除いた方が良いかもしれません。</p>
]]></content:encoded>
	</item>
	<item>
		<title>ひろ より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-150</link>
		<dc:creator>ひろ</dc:creator>
		<pubDate>Sun, 15 Feb 2009 12:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-150</guid>
		<description>おお！これは素晴らしい！
CDATA内で変数の内容を反映させたい場合はどうするのでしょう？</description>
		<content:encoded><![CDATA[<p>おお！これは素晴らしい！<br />
CDATA内で変数の内容を反映させたい場合はどうするのでしょう？</p>
]]></content:encoded>
	</item>
	<item>
		<title>storage.goodmix &#187; Blog Archive &#187; links for 2008-11-01 より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-87</link>
		<dc:creator>storage.goodmix &#187; Blog Archive &#187; links for 2008-11-01</dc:creator>
		<pubDate>Sun, 02 Nov 2008 06:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-87</guid>
		<description>[...]  unbland.net blog - ActionScript 3 での色々な文字列の扱い方 (tags: actionscript)  [...]</description>
		<content:encoded><![CDATA[<p>[...]  unbland.net blog &#8211; ActionScript 3 での色々な文字列の扱い方 (tags: actionscript)  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>admin より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-76</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 30 Oct 2008 03:22:15 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-76</guid>
		<description>どうも、どうも！
ただ一つだけ欠点があって、AS 側の変数を使いたい時がクォーテーション文字列よりめんどくさいんですよね。</description>
		<content:encoded><![CDATA[<p>どうも、どうも！<br />
ただ一つだけ欠点があって、AS 側の変数を使いたい時がクォーテーション文字列よりめんどくさいんですよね。</p>
]]></content:encoded>
	</item>
	<item>
		<title>taka:nium より</title>
		<link>http://unbland.org/blog/2008/10/28/167.html/comment-page-1#comment-71</link>
		<dc:creator>taka:nium</dc:creator>
		<pubDate>Wed, 29 Oct 2008 17:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://unbland.net/blog/?p=167#comment-71</guid>
		<description>これは便利ですね！
あとでこっそりコードを修正しておこうかと思います！！</description>
		<content:encoded><![CDATA[<p>これは便利ですね！<br />
あとでこっそりコードを修正しておこうかと思います！！</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.477 seconds -->
