jellyfin/MediaBrowser.Model/Extensions/StringHelper.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Extensions
{
/// <summary>
2020-01-09 11:07:13 -05:00
/// Helper methods for manipulating strings.
2018-12-27 18:27:57 -05:00
/// </summary>
public static class StringHelper
{
/// <summary>
2020-01-16 17:22:42 -05:00
/// Returns the string with the first character as uppercase.
2018-12-27 18:27:57 -05:00
/// </summary>
2020-01-09 11:07:13 -05:00
/// <param name="str">The input string.</param>
2020-01-16 17:23:06 -05:00
/// <returns>The string with the first character as uppercase.</returns>
2020-01-09 11:07:13 -05:00
public static string FirstToUpper(string str)
2018-12-27 18:27:57 -05:00
{
if (str.Length == 0)
2018-12-27 18:27:57 -05:00
{
return str;
2018-12-27 18:27:57 -05:00
}
2021-06-06 13:30:43 -04:00
// We check IsLower instead of IsUpper because both return false for non-letters
2021-06-05 07:32:22 -04:00
if (!char.IsLower(str[0]))
2020-01-09 11:07:13 -05:00
{
return str;
}
2018-12-27 18:27:57 -05:00
2020-01-09 11:07:13 -05:00
return string.Create(
str.Length,
str,
(chars, buf) =>
{
chars[0] = char.ToUpperInvariant(buf[0]);
for (int i = 1; i < chars.Length; i++)
2020-01-09 11:07:13 -05:00
{
chars[i] = buf[i];
}
});
2018-12-27 18:27:57 -05:00
}
}
}