<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Is In Array?</title>
	<atom:link href="http://assasiner.wordpress.com/2006/12/03/is-in-array/feed/" rel="self" type="application/rss+xml" />
	<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/</link>
	<description>A PHP Programmer Learning Perl</description>
	<lastBuildDate>Fri, 28 Aug 2009 09:32:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: tomn9</title>
		<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-108</link>
		<dc:creator>tomn9</dc:creator>
		<pubDate>Fri, 28 Aug 2009 09:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-108</guid>
		<description>Thanks, very helpfull</description>
		<content:encoded><![CDATA[<p>Thanks, very helpfull</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manu</title>
		<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-106</link>
		<dc:creator>manu</dc:creator>
		<pubDate>Thu, 18 Jun 2009 23:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-106</guid>
		<description>Thaks for posting this, it&#039;s a great option.</description>
		<content:encoded><![CDATA[<p>Thaks for posting this, it&#8217;s a great option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Stock</title>
		<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-103</link>
		<dc:creator>Rick Stock</dc:creator>
		<pubDate>Sat, 23 May 2009 22:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-103</guid>
		<description>Thanks - just what I was looking for :-)</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; just what I was looking for <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ibrahim</title>
		<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-100</link>
		<dc:creator>ibrahim</dc:creator>
		<pubDate>Sat, 25 Apr 2009 16:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-100</guid>
		<description>hello , am biggener in perl can you help me in this array:
@array=();
print &quot;enter (1) to determine the length of array\n&quot;;
print &quot;enter (2) to enter the element of array\n&quot;;
print &quot;enter (3) to find zeroes\n&quot;;
print &quot;enter (4) to find the max\n&quot;;
print &quot;enter (5)to find the even number\n&quot;;
print &quot;enter (6) to find the sum of odd number\n&quot;;
print &quot;enter (7) to find the prime numbers\n&quot;;
print &quot;enter (8) to to add to array \n&quot;;
print &quot;enter (9) to sort array descending \n&quot;;
print &quot;enter (10) to creat associated array\n&quot;;
print &quot;enter (11) to print a key &amp; values of associated array\n&quot;;
print &quot;enter (12) t0 exit \n&quot;;

please ..</description>
		<content:encoded><![CDATA[<p>hello , am biggener in perl can you help me in this array:<br />
@array=();<br />
print &#8220;enter (1) to determine the length of array\n&#8221;;<br />
print &#8220;enter (2) to enter the element of array\n&#8221;;<br />
print &#8220;enter (3) to find zeroes\n&#8221;;<br />
print &#8220;enter (4) to find the max\n&#8221;;<br />
print &#8220;enter (5)to find the even number\n&#8221;;<br />
print &#8220;enter (6) to find the sum of odd number\n&#8221;;<br />
print &#8220;enter (7) to find the prime numbers\n&#8221;;<br />
print &#8220;enter (8) to to add to array \n&#8221;;<br />
print &#8220;enter (9) to sort array descending \n&#8221;;<br />
print &#8220;enter (10) to creat associated array\n&#8221;;<br />
print &#8220;enter (11) to print a key &amp; values of associated array\n&#8221;;<br />
print &#8220;enter (12) t0 exit \n&#8221;;</p>
<p>please ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-96</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 15 Apr 2009 19:32:47 +0000</pubDate>
		<guid isPermaLink="false">http://assasiner.wordpress.com/2006/12/03/is-in-array/#comment-96</guid>
		<description>Check cpan
http://search.cpan.org/~vparseval/List-MoreUtils-0.22/lib/List/MoreUtils.pm

use List::MoreUtils(qw);

if( any{$_ eq $string} @array)
{
print “$string is in the array”;
}</description>
		<content:encoded><![CDATA[<p>Check cpan<br />
<a href="http://search.cpan.org/~vparseval/List-MoreUtils-0.22/lib/List/MoreUtils.pm" rel="nofollow">http://search.cpan.org/~vparseval/List-MoreUtils-0.22/lib/List/MoreUtils.pm</a></p>
<p>use List::MoreUtils(qw);</p>
<p>if( any{$_ eq $string} @array)<br />
{<br />
print “$string is in the array”;<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
