blob: d3324a91324ec2da63bc4cac7099f91cd6c8dca3 (
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
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="StringExtensions.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// String Extensions
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Extensions
{
using System.Globalization;
/// <summary>
/// String Extensions
/// </summary>
public static class StringExtensions
{
/// <summary>
/// Change the input string to title case
/// </summary>
/// <param name="input">the input string</param>
/// <returns>the input string in title case</returns>
public static string ToTitleCase(this string input)
{
TextInfo textInfo = new CultureInfo(CultureInfo.CurrentCulture.Name, false).TextInfo;
return textInfo.ToTitleCase(input.ToLower());
}
}
}
|