Is Palindrome : String « Data Types « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Data Types » StringScreenshots 
Is Palindrome
 

using System;
using System.Text;

public class MainClass {
    public static bool IsPalindrome(string s) {
        int iLength, iHalfLen;
        iLength = s.Length - 1;
        iHalfLen = iLength / 2;
        for (int i = 0; i <= iHalfLen; i++) {
            if (s.Substring(i, 1!=
                s.Substring(iLength - i, 1)) {
                return false;
            }
        }
        return true;
    }

    static void Main(string[] args) {
        string[] sa = new string[]{"level""minim""radar"};

        foreach (string v in sa)
            Console.WriteLine("{0}\t{1}",v, IsPalindrome(v));
    }
}

 
Related examples in the same category
1.create some strings
2.use the Concat() method to concatenate strings
3.use the addition operator (+) to concatenate strings
4.use the Copy() method to copy a string
5.use the Join() method to join strings
6.use the StartsWith() and EndsWith() methods to check if a string contains a specified substring at the start and end
7.use the Substring() method to retrieve substrings
8.use the Trim(), TrimStart(), and TrimEnd() methods to trim strings
9.use the PadLeft() and PadRight() methods to align strings
10.Decoding a Base64-encoded BinaryDecoding a Base64-encoded Binary
11.From Base 64 Decode StringFrom Base 64 Decode String
12.Using Strings
13.Creating Strings
14.string: Changing Charactersstring: Changing Characters
15.Removing CharactersRemoving Characters
16.Padding StringsPadding Strings
17.Joining StringsJoining Strings
18.Extracting SubstringsExtracting Substrings
19.String Concatenation 2String Concatenation 2
20.Substring demoSubstring demo
21.Trimming String SpacesTrimming String Spaces
22.Introduce stringIntroduce string
23.Some string operationsSome string operations
24.Demonstrate string arraysDemonstrate string arrays
25.Display the digits of an integer using wordsDisplay the digits of an integer using words
26.Use Substring() 1Use Substring() 1
27.A string can control a switch statementA string can control a switch statement
28.Illustrates the use of strings 1Illustrates the use of strings 1
29.String ManipulationString Manipulation
30.String Manipulation ConcatenateString Manipulation Concatenate
31.String copyString copy
32.String Copy, End With and InsertString Copy, End With and Insert
33.Demonstrate escape sequences in strings. Demonstrate escape sequences in strings.
34.Demonstrate verbatim literal stringsDemonstrate verbatim literal strings
35.Display a string in reverse by using recursionDisplay a string in reverse by using recursion
36.Demonstrate Concat()Demonstrate Concat()
37.Demonstrate Concat() 2Demonstrate Concat() 2
38.Trimming and paddingTrimming and padding
39.Use Substring() 2Use Substring() 2
40.String To Char ArrayString To Char Array
41.Strings: Regular ExpressionsStrings: Regular Expressions
42.String InterningString Interning
43.Lexical DetailsLexical Details
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.