<?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>
	Comments on: Java program that checks whether the given string is palindrome or not	</title>
	<atom:link href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Thu, 29 Oct 2015 10:12:13 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: Dhana		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-139203</link>

		<dc:creator><![CDATA[Dhana]]></dc:creator>
		<pubDate>Thu, 29 Oct 2015 10:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-139203</guid>

					<description><![CDATA[Simple program. One more way to check string or number palindrome is http://www.explain-java.com/write-a-java-program-to-check-a-numberstring-is-palindrome-or-not-with-output/]]></description>
			<content:encoded><![CDATA[<p>Simple program. One more way to check string or number palindrome is <a href="http://www.explain-java.com/write-a-java-program-to-check-a-numberstring-is-palindrome-or-not-with-output/" rel="nofollow ugc">http://www.explain-java.com/write-a-java-program-to-check-a-numberstring-is-palindrome-or-not-with-output/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NIRAJ		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-116998</link>

		<dc:creator><![CDATA[NIRAJ]]></dc:creator>
		<pubDate>Thu, 09 Jul 2015 09:17:52 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-116998</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-57290&quot;&gt;Rajesh Kumar Raj&lt;/a&gt;.

check Simple and easy program to find palindrome here http://www.javaengineeringprograms.com/program-to-check-palindrome-in-java/]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-57290">Rajesh Kumar Raj</a>.</p>
<p>check Simple and easy program to find palindrome here <a href="http://www.javaengineeringprograms.com/program-to-check-palindrome-in-java/" rel="nofollow ugc">http://www.javaengineeringprograms.com/program-to-check-palindrome-in-java/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: kg		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-112648</link>

		<dc:creator><![CDATA[kg]]></dc:creator>
		<pubDate>Thu, 18 Jun 2015 07:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-112648</guid>

					<description><![CDATA[how do I make a program to show if word, sentence or number is palindrome]]></description>
			<content:encoded><![CDATA[<p>how do I make a program to show if word, sentence or number is palindrome</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rajesh Kumar Raj		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-57290</link>

		<dc:creator><![CDATA[Rajesh Kumar Raj]]></dc:creator>
		<pubDate>Sun, 07 Dec 2014 16:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-57290</guid>

					<description><![CDATA[Another Simple one without importing any API&#039;s,

public class FindPalindromeOrNot {

	
	public static void main(String[] ar) {

		String inputString = &quot;liril&quot;;

		boolean isPalindrome = true;
		char[] inputStringArr = inputString.toCharArray();
		int length = inputStringArr.length;
		int temp = length;
		for (int n = 0; n &#060; length; n++) {
			temp -= 1;
			if (inputStringArr[n] != inputStringArr[temp]) {
				isPalindrome = false;
			}

		}

		System.out.println(&#034;Is Palindrome = &#034; + isPalindrome);

	}
}]]></description>
			<content:encoded><![CDATA[<p>Another Simple one without importing any API&#8217;s,</p>
<p>public class FindPalindromeOrNot {</p>
<p>	public static void main(String[] ar) {</p>
<p>		String inputString = &#8220;liril&#8221;;</p>
<p>		boolean isPalindrome = true;<br />
		char[] inputStringArr = inputString.toCharArray();<br />
		int length = inputStringArr.length;<br />
		int temp = length;<br />
		for (int n = 0; n &lt; length; n++) {<br />
			temp -= 1;<br />
			if (inputStringArr[n] != inputStringArr[temp]) {<br />
				isPalindrome = false;<br />
			}</p>
<p>		}</p>
<p>		System.out.println(&quot;Is Palindrome = &quot; + isPalindrome);</p>
<p>	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sushil		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-55028</link>

		<dc:creator><![CDATA[sushil]]></dc:creator>
		<pubDate>Tue, 02 Dec 2014 13:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-55028</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-10041&quot;&gt;Pulkit&lt;/a&gt;.

public class Palindrome {
		
	public static void main(String[] args) {
		StringBuffer string = new StringBuffer(&quot;malayalam&quot;);
		if (string.substring(0).equals(string.reverse().toString()))
			System.out.println(&quot;String is palindrom&quot;);
		else
			System.out.println(&quot;String is NOT palindrom&quot;);
				
	}
}]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-10041">Pulkit</a>.</p>
<p>public class Palindrome {</p>
<p>	public static void main(String[] args) {<br />
		StringBuffer string = new StringBuffer(&#8220;malayalam&#8221;);<br />
		if (string.substring(0).equals(string.reverse().toString()))<br />
			System.out.println(&#8220;String is palindrom&#8221;);<br />
		else<br />
			System.out.println(&#8220;String is NOT palindrom&#8221;);</p>
<p>	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sushil		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-55027</link>

		<dc:creator><![CDATA[sushil]]></dc:creator>
		<pubDate>Tue, 02 Dec 2014 13:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-55027</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-9577&quot;&gt;unknown&lt;/a&gt;.

public class Palindrome {
		
	public static void main(String[] args) {
		StringBuffer string = new StringBuffer(&quot;malayalam&quot;);
		if (string.substring(0).equals(string.reverse().toString()))
			System.out.println(&quot;String is palindrom&quot;);
		else
			System.out.println(&quot;String is NOT palindrom&quot;);
				
	}
}]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-9577">unknown</a>.</p>
<p>public class Palindrome {</p>
<p>	public static void main(String[] args) {<br />
		StringBuffer string = new StringBuffer(&#8220;malayalam&#8221;);<br />
		if (string.substring(0).equals(string.reverse().toString()))<br />
			System.out.println(&#8220;String is palindrom&#8221;);<br />
		else<br />
			System.out.println(&#8220;String is NOT palindrom&#8221;);</p>
<p>	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: sushil		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-55025</link>

		<dc:creator><![CDATA[sushil]]></dc:creator>
		<pubDate>Tue, 02 Dec 2014 13:08:38 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-55025</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-9320&quot;&gt;harsha&lt;/a&gt;.

public class Palindrome {
		
	public static void main(String[] args) {
		StringBuffer string = new StringBuffer(&quot;malayalam&quot;);
		if (string.substring(0).equals(string.reverse().toString()))
			System.out.println(&quot;String is palindrom&quot;);
		else
			System.out.println(&quot;String is NOT palindrom&quot;);
				
	}
}]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-9320">harsha</a>.</p>
<p>public class Palindrome {</p>
<p>	public static void main(String[] args) {<br />
		StringBuffer string = new StringBuffer(&#8220;malayalam&#8221;);<br />
		if (string.substring(0).equals(string.reverse().toString()))<br />
			System.out.println(&#8220;String is palindrom&#8221;);<br />
		else<br />
			System.out.println(&#8220;String is NOT palindrom&#8221;);</p>
<p>	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: MAHAPRASAD CHAND		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-50668</link>

		<dc:creator><![CDATA[MAHAPRASAD CHAND]]></dc:creator>
		<pubDate>Thu, 20 Nov 2014 16:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-50668</guid>

					<description><![CDATA[public class String2 {

	public static void main(String[] args) {
		java.util.Scanner scn=new java.util.Scanner(System.in);
		System.out.println(&quot;enter a name&quot;);
		String s4=scn.nextLine();
		
		String s2=&quot;&quot;;
		
		int m=s4.length();
		System.out.println(m);
		for(int i=m-1;i&#062;=0;i--)
		{
			s2=s2+s4.charAt(i);
			
		}
		System.out.println(&quot;reverse string=&quot;+s2);
		
		
		boolean x=s4.equalsIgnoreCase(s2);
	if (x==true)
	{
		System.out.println(&quot;Palindrome&quot;);
		
	}
	else
		System.out.println(&quot;its not a Palindrome&quot;);

	}
}]]></description>
			<content:encoded><![CDATA[<p>public class String2 {</p>
<p>	public static void main(String[] args) {<br />
		java.util.Scanner scn=new java.util.Scanner(System.in);<br />
		System.out.println(&#8220;enter a name&#8221;);<br />
		String s4=scn.nextLine();</p>
<p>		String s2=&#8221;&#8221;;</p>
<p>		int m=s4.length();<br />
		System.out.println(m);<br />
		for(int i=m-1;i&gt;=0;i&#8211;)<br />
		{<br />
			s2=s2+s4.charAt(i);</p>
<p>		}<br />
		System.out.println(&#8220;reverse string=&#8221;+s2);</p>
<p>		boolean x=s4.equalsIgnoreCase(s2);<br />
	if (x==true)<br />
	{<br />
		System.out.println(&#8220;Palindrome&#8221;);</p>
<p>	}<br />
	else<br />
		System.out.println(&#8220;its not a Palindrome&#8221;);</p>
<p>	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: arun		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-43155</link>

		<dc:creator><![CDATA[arun]]></dc:creator>
		<pubDate>Wed, 29 Oct 2014 06:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-43155</guid>

					<description><![CDATA[Check this link &#062; http://www.msccomputerscience.com/2014/05/java-program-to-check-whether-string-is.html]]></description>
			<content:encoded><![CDATA[<p>Check this link &gt; <a href="http://www.msccomputerscience.com/2014/05/java-program-to-check-whether-string-is.html" rel="nofollow ugc">http://www.msccomputerscience.com/2014/05/java-program-to-check-whether-string-is.html</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: mae62		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-that-checks-whether-the-given-string-is-palindrome-or-not/comment-page-1/#comment-29596</link>

		<dc:creator><![CDATA[mae62]]></dc:creator>
		<pubDate>Sun, 28 Sep 2014 04:11:32 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=854#comment-29596</guid>

					<description><![CDATA[if the given String is not a palindrome? how will you change it into a palindrome?]]></description>
			<content:encoded><![CDATA[<p>if the given String is not a palindrome? how will you change it into a palindrome?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
