User Tools

Site Tools


note:prog:csharp:250305:001:index

C#: String Right Function in C# (2025-03-05)

Code

  • There is no similar method in C#, but you can add it with the following extension method which uses Substring() instead:
  • static class Extensions
    {
        /// <summary>
        /// Get substring of specified number of characters on the right.
        /// </summary>
        public static string Right(this string value, int length)
        {
            if (String.IsNullOrEmpty(value)) return string.Empty;
    
            return value.Length <= length ? value : value.Substring(value.Length - length);
        }
    }

TAGS

  • 5 person(s) visited this page until now.

note/prog/csharp/250305/001/index.txt · Last modified: 2025/03/05 13:23 (external edit)