aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Extensions/StringHelper.cs
blob: 58cde8620cd287d62d4349361a8fc412899de1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;

namespace MediaBrowser.Model.Extensions
{
    /// <summary>
    /// Helper methods for manipulating strings.
    /// </summary>
    public static class StringHelper
    {
        /// <summary>
        /// Returns the string with the first character as uppercase.
        /// </summary>
        /// <param name="str">The input string.</param>
        /// <returns>The string with the first character as uppercase.</returns>
        public static string FirstToUpper(string str)
        {
            if (str.Length == 0)
            {
                return str;
            }

            // We check IsLower instead of IsUpper because both return false for non-letters
            if (!char.IsLower(str[0]))
            {
                return str;
            }

            return string.Create(
                str.Length,
                str.AsSpan(),
                (chars, buf) =>
                {
                    chars[0] = char.ToUpperInvariant(buf[0]);
                    buf.Slice(1).CopyTo(chars.Slice(1));
                });
        }
    }
}