Check if a Character is Alphabetic in C#

This C# function is designed to check if a given character is alphabetic, meaning it falls within the range of letters A to Z (both uppercase and lowercase). The function should return a boolean value indicating whether the character is alphabetic or not. It should be used to determine if a character is a valid letter, ignoring any non-alphabetic characters. For example, if the input is "a", the function should return true, and the program should output "It is an alphabetic character". This solution does not account for accents or the character "ñ".



Group

Functions in C#

Objective

1. Write a function named "IsAlphabetic" that takes a single character as a parameter.
2. The function should check if the character is between 'A' and 'Z' (inclusive) or 'a' and 'z' (inclusive).
3. If the character is alphabetic, return true; otherwise, return false.
4. Use the function in a sample program that checks whether a character is alphabetic or not and outputs an appropriate message.

Write a C# 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 ñ)

Example C# Exercise

 Copy C# Code
using System;

class Program
{
    // Function to check if a character is alphabetic
    public static bool IsAlphabetic(char c)
    {
        // Check if the character is in the range of 'A' to 'Z' or 'a' to 'z'
        return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
    }

    // Main method to test the IsAlphabetic function
    public static void Main(string[] args)
    {
        // Test with a sample character
        char testChar = 'a';

        // Check if the character is alphabetic
        if (IsAlphabetic(testChar))
        {
            // Output if the character is alphabetic
            System.Console.WriteLine("It is an alphabetic character");
        }
        else
        {
            // Output if the character is not alphabetic
            System.Console.WriteLine("It is not an alphabetic character");
        }
    }
}

 Output

It is an alphabetic character

Share this C# Exercise

More C# Practice Exercises of Functions in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.

  • Check if a String is an Integer in C#

    This C# function is designed to check if a given string represents an integer number. The function should return a boolean value indicating whether the string can be successfully p...

  • Calculator C# Program Using Command Line Parameters

    This C# program allows users to perform basic arithmetic operations such as addition, subtraction, multiplication, or division directly from the command line. The user needs to pro...

  • Arithmetic Operations with Error Codes in C#

    This C# program calculates basic arithmetic operations, such as sum, subtraction, multiplication, or division, based on the command line parameters provided by the user. The progra...

  • Min and Max Values in an Array in C#

    This C# program defines a function named "MinMaxArray" that takes an array of floating-point numbers and returns the minimum and maximum values stored in the array using reference ...

  • Reverse a String Using Recursion in C#

    This C# program demonstrates how to reverse a string using recursion. The program takes an input string and recursively processes each character to reverse the order. The recursion...

  • Display a Filled and Hollow Rectangle in C#

    This C# program demonstrates how to write two functions that display rectangles on the console screen. The first function, WriteRectangle, takes the width and height as parameters ...