-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathStringExtension.cs
More file actions
217 lines (175 loc) · 6.46 KB
/
Copy pathStringExtension.cs
File metadata and controls
217 lines (175 loc) · 6.46 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace Components
{
public static class StringExtension
{
public static string Repeat(this string s, int Count)
{
return new StringBuilder().Insert(0, s, Count).ToString();
}
public static string Indent(this string s)
{
return s.Insert(0, "\t").Replace("\n", "\n\t");
}
public static string SubstringAtIndexOf(this string s, string Value)
{
return s.Substring(s.IndexOf(Value));
}
public static string SubstringAtIndexOf(this string s, string Value, int Offset)
{
return s.Substring(s.IndexOf(Value) + Offset);
}
public static string SubstringAtIndexOf(this string s, char Value)
{
return s.Substring(s.IndexOf(Value));
}
public static string SubstringAtIndexOf(this string s, char Value, int Offset)
{
return s.Substring(s.IndexOf(Value) + Offset);
}
public static string SubstringAtLastIndexOf(this string s, string Value)
{
return s.Substring(s.LastIndexOf(Value));
}
public static string SubstringAtLastIndexOf(this string s, string Value, int Offset)
{
return s.Substring(s.LastIndexOf(Value) + Offset);
}
public static string SubstringAtLastIndexOf(this string s, char Value)
{
return s.Substring(s.LastIndexOf(Value));
}
public static string SubstringAtLastIndexOf(this string s, char Value, int Offset)
{
return s.Substring(s.LastIndexOf(Value) + Offset);
}
public static string RemoveAtIndexOf(this string s, string Value)
{
return s.Remove(s.IndexOf(Value));
}
public static string RemoveAtIndexOf(this string s, string Value, int Offset)
{
return s.Remove(s.IndexOf(Value) + Offset);
}
public static string RemoveAtIndexOf(this string s, char Value)
{
return s.Remove(s.IndexOf(Value));
}
public static string RemoveAtIndexOf(this string s, char Value, int Offset)
{
return s.Remove(s.IndexOf(Value) + Offset);
}
public static string RemoveAtLastIndexOf(this string s, string Value)
{
return s.Remove(s.LastIndexOf(Value));
}
public static string RemoveAtLastIndexOf(this string s, string Value, int Offset)
{
return s.Remove(s.LastIndexOf(Value) + Offset);
}
public static string RemoveAtLastIndexOf(this string s, char Value)
{
return s.Remove(s.LastIndexOf(Value));
}
public static string RemoveAtLastIndexOf(this string s, char Value, int Offset)
{
return s.Remove(s.LastIndexOf(Value) + Offset);
}
public static string Slice(this string s, int StartIndex, int EndIndex)
{
return s.Substring(StartIndex, EndIndex - StartIndex);
}
public static string[] Split(this string s, int Index)
{
return new[] { s.Remove(Index), s.Substring(Index) };
}
public static string[] SplitLines(this string s, StringSplitOptions Options)
{
return s.Split(new[] { "\r\n" }, Options);
}
public static int LeastIndexOf(this string s, params char[] Chars)
{
return Chars.Select(x => s.IndexOf(x)).OrderBy(x => x).First();
}
private static Encoding _encoding = Encoding.GetEncoding("iso-8859-1");
public static byte[] GetBytes(this string s)
{
return _encoding.GetBytes(s);
}
public static string[] SplitLines(this string s)
{
return SplitLines(s, StringSplitOptions.None);
}
public static string Aggregate(this IEnumerable<string> s)
{
return s.Aggregate((x, y) => x + y);
}
public static string Aggregate(this IEnumerable<string> s, string Delimiter)
{
return s.Aggregate((x, y) => x + Delimiter + y);
}
public static string GetSurroundingLines(this string s, int Index,
int LinesAbove, int LinesBelow)
{
var strings = s
.Split(Index)
.Select(x => x.SplitLines(StringSplitOptions.None))
.ToArray();
return strings[0].Skip(strings[0].Length - LinesAbove - 1).Aggregate("\r\n") +
strings[1].Take(LinesBelow + 1).Aggregate("\r\n");
}
public static string GetLine(this string s, int Index)
{
return s.GetSurroundingLines(Index, 0, 0);
}
public static int GetLineNumber(this string s, int Index)
{
return s.Split(Index)[0].SplitLines().Length - 1;
}
public static int GetLineIndex(this string s, int lineNumber)
{
if (lineNumber == 0)
return 0;
var currentLine = 0;
for (int i = 0; i < s.Length; i++)
{
if (s[i] == '\n')
{
if (++currentLine == lineNumber)
return i + 1;
}
}
return -1;
}
public static string NormalizeLines(this string s)
{
return s
.Replace("\r\n", "\n")
.Replace('\r', '\n')
.Replace("\n", "\r\n");
}
public static string InsertLineNumbers(this string s, int startLine)
{
var sb = new StringBuilder(s);
int line = startLine;
Func<string> getLineStr = () => (line++.ToString().PadLeft(4, '0') + ": ");
sb.Insert(0, getLineStr());
for (int i = 0; i < sb.Length; i++)
{
if (sb[i] == '\n')
{
sb.Insert(i + 1, getLineStr());
}
}
return sb.ToString();
}
public static string InsertLineNumbers(this string s)
{
return InsertLineNumbers(s, 1);
}
}
}