Function IsAlphabetic Learn programming C#

Lesson:

Functions


Exercise:

Function IsAlphabetic


Objetive:

Create a function that tells if a character is alphabetic (A through Z) or not. It should be used like this:

if (IsAlphabetic ("a"))
System.Console.WriteLine ("It is an alphabetic character");

(Note: do not worry about accents and ñ)


Code:

using System;
public class exercise123
{
    public static bool IsAlpha(char simbolo)
    {
        if ((simbolo >= 'a') && (simbolo <= 'z'))
            return true;

        if ((simbolo >= 'A') && (simbolo <= 'Z'))
            return true;

        return false;
    }

    public static bool IsAlpha2(char simbolo)
    {
        simbolo = Char.ToLower(simbolo);
        if ((simbolo >= 'a') && (simbolo <= 'z'))
            return true;

        return false;
    }

    public static bool IsAlpha3(char simbolo)
    {
        simbolo = simbolo.ToString().ToLower()[0];
        if ((simbolo >= 'a') && (simbolo <= 'z'))
            return true;

        return false;
    }

    public static bool IsAlpha4(char simbolo)
    {
        string validas = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqwrstuvwxyz";
        if (validas.Contains(simbolo))
            return true;

        return false;
    }

    public static void Main()
    {
        Console.WriteLine(
         IsAlpha('w'));
        Console.WriteLine(
         IsAlpha('2'));
    }
}

Juan A. Ripoll - Systems Tutorials and Programming Courses ©  All rights reserved.  Legal Conditions.