C#

Display ‘st’, ‘nd’, ‘rd’ And ‘th’ Suffix After Day Numbers With Dates In C#

In my recent project, I got the requirement to display dates with suffixes like 21st May 2021, 14th May 2021, etc.

By default, C# doesn’t have any inbuilt feature to display the ‘st‘, ‘nd‘, ‘rd‘, and ‘th‘ suffix after day numbers.

So in this article, we will learn how to display ‘st‘, ‘nd‘, ‘rd‘, and ‘th‘ suffix after day numbers with dates in C#.

GetDayNumberSuffix() method will return ‘st‘, ‘nd‘, ‘rd‘, and ‘th‘ suffix based on the day of given date. FormatDayNumberSuffix() method will append the suffix string to inputted date.

using System;

namespace Day_Suffix
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(FormatDayNumberSuffix(new DateTime(2021, 05, 21)));
            Console.WriteLine(FormatDayNumberSuffix(new DateTime(2021, 05, 22)));
            Console.WriteLine(FormatDayNumberSuffix(new DateTime(2021, 05, 23)));
            Console.WriteLine(FormatDayNumberSuffix(new DateTime(2021, 05, 24)));
        }

        public static string FormatDayNumberSuffix(DateTime inputDateTime)
        {
            return string.Format(inputDateTime.ToString("dd{0} MMMM yyyy"), GetDayNumberSuffix(inputDateTime.Day.ToString()));
        }

        private static string GetDayNumberSuffix(string day)
        {
            string suffix = "th";
            if (int.Parse(day) < 11 || int.Parse(day) > 20)
            {
                day = day.ToCharArray()[^1].ToString();
                switch (day)
                {
                    case "1":
                        suffix = "st";
                        break;
                    case "2":
                        suffix = "nd";
                        break;
                    case "3":
                        suffix = "rd";
                        break;
                }
            }
            return suffix;
        }
    }
}

Output:

Please give your valuable feedback and if you have any questions or issues about this article, please let me know.

Also, check CRUD Operations Using .NET 5.0 Web API

Yasin Panwala

Yasin Panwala is a Web Developer and Author at TheCodeHubs. He has experience in Web Developing and Designing and also in Writing. He has got his skills in working on technologies like .NET Core, ADO.NET, AJAX, Angular, AngularJS, ASP.NET, ASP.NET MVC, Bootstrap, C#, CSS, Entity Framework, Express.js, GraphQL, HTML, JavaScript, JQuery, JSON, LINQ, Microsoft Office, MongoDB, MySQL, Node.js, PostgreSQL, SQL, SQL Server, TypeORM, TypeScript, Visual Basic .NET, Web API. He also got his skills in working with different integration and some known versioning tools. He is always ready to learn new things and he always tries his best on tasks that are assigned to him and gives the best possible outputs.

Recent Posts

Testing hk

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Operation

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

TETS NEW

test

2 years ago