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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
using System;
using System.Globalization;
using System.Text;
using System.Text.RegularExpressions;
namespace MediaBrowser.Model.Extensions
{
/// <summary>
/// Isolating these helpers allow this entire project to be easily converted to Java
/// </summary>
public static class StringHelper
{
/// <summary>
/// Equalses the ignore case.
/// </summary>
/// <param name="str1">The STR1.</param>
/// <param name="str2">The STR2.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
public static bool EqualsIgnoreCase(string str1, string str2)
{
return string.Equals(str1, str2, StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// Indexes the of ignore case.
/// </summary>
/// <param name="str">The string.</param>
/// <param name="value">The value.</param>
/// <returns>System.Int32.</returns>
public static int IndexOfIgnoreCase(string str, string value)
{
return str.IndexOf(value, StringComparison.OrdinalIgnoreCase);
}
/// <summary>
/// To the string culture invariant.
/// </summary>
/// <param name="val">The value.</param>
/// <returns>System.String.</returns>
public static string ToStringCultureInvariant(int val)
{
return val.ToString(CultureInfo.InvariantCulture);
}
/// <summary>
/// To the string culture invariant.
/// </summary>
/// <param name="val">The value.</param>
/// <returns>System.String.</returns>
public static string ToStringCultureInvariant(long val)
{
return val.ToString(CultureInfo.InvariantCulture);
}
/// <summary>
/// To the string culture invariant.
/// </summary>
/// <param name="val">The value.</param>
/// <returns>System.String.</returns>
public static string ToStringCultureInvariant(double val)
{
return val.ToString(CultureInfo.InvariantCulture);
}
/// <summary>
/// Trims the start.
/// </summary>
/// <param name="str">The string.</param>
/// <param name="c">The c.</param>
/// <returns>System.String.</returns>
public static string TrimStart(string str, char c)
{
return str.TrimStart(c);
}
/// <summary>
/// Splits the specified string.
/// </summary>
/// <param name="str">The string.</param>
/// <param name="term">The term.</param>
/// <returns>System.String[].</returns>
public static string[] RegexSplit(string str, string term)
{
return Regex.Split(str, term, RegexOptions.IgnoreCase);
}
/// <summary>
/// Splits the specified string.
/// </summary>
/// <param name="str">The string.</param>
/// <param name="term">The term.</param>
/// <param name="limit">The limit.</param>
/// <returns>System.String[].</returns>
public static string[] RegexSplit(string str, string term, int limit)
{
return new Regex(term).Split(str, limit);
}
/// <summary>
/// Replaces the specified STR.
/// </summary>
/// <param name="str">The STR.</param>
/// <param name="oldValue">The old value.</param>
/// <param name="newValue">The new value.</param>
/// <param name="comparison">The comparison.</param>
/// <returns>System.String.</returns>
public static string Replace(this string str, string oldValue, string newValue, StringComparison comparison)
{
var sb = new StringBuilder();
var previousIndex = 0;
var index = str.IndexOf(oldValue, comparison);
while (index != -1)
{
sb.Append(str.Substring(previousIndex, index - previousIndex));
sb.Append(newValue);
index += oldValue.Length;
previousIndex = index;
index = str.IndexOf(oldValue, index, comparison);
}
sb.Append(str.Substring(previousIndex));
return sb.ToString();
}
public static string FirstToUpper(this string str)
{
return string.IsNullOrEmpty(str) ? "" : str.Substring(0, 1).ToUpper() + str.Substring(1);
}
}
}
|