blob: 35cf4b128ae5ad1f3c1df31e089484a0e4397583 (
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
39
40
41
|
// --------------------------------------------------------------------------------------------------------------------
// <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.Text;
/// <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)
{
string[] tokens = input.Split(' ');
StringBuilder sb = new StringBuilder(input.Length);
foreach (string s in tokens)
{
if (!string.IsNullOrEmpty(s))
{
sb.Append(s[0].ToString().ToUpper());
sb.Append(s.Substring(1).ToLower());
sb.Append(" ");
}
}
return sb.ToString().Trim();
}
}
}
|