-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStringTools.cs
90 lines (84 loc) · 2.66 KB
/
StringTools.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace APPID
{
internal class StringTools
{
public static string RemoveEverythingAfterFirstKeepString(string s, string removeMe)
{
int index = s.IndexOf(removeMe);
if (index > 0)
s = s.Substring(0, index);
s = s + removeMe;
return s;
}
public static string RemoveEverythingAfterFirstRemoveString(string s, string removeMe)
{
int index = s.IndexOf(removeMe);
if (index > 0)
s = s.Substring(0, index);
return s;
}
public static string RemoveEverythingAfterLastRemoveString(string s, string removeMe)
{
int index = s.LastIndexOf(removeMe);
if (index > 0)
s = s.Substring(0, index);
return s;
}
public static string RemoveEverythingAfterLastKeepString(string s, string removeMe)
{
int index = s.LastIndexOf(removeMe);
if (index > 0)
s = s.Substring(0, index);
s = s + removeMe;
return s;
}
public static string RemoveEverythingBeforeFirstKeepString(string s, string removeMe)
{
int index = s.IndexOf(removeMe);
if (index > 0)
s = s.Substring(index);
return s;
}
public static string RemoveEverythingBeforeFirstRemoveString(string s, string removeMe)
{
int index = s.IndexOf(removeMe);
int removelength = removeMe.Length;
if (index > 0)
s = s.Substring(index + removelength);
return s;
}
public static string KeepOnlyNumbers(string s)
{
string numbers = "0123456789";
string a = "";
foreach (char ch in s)
{
if (numbers.Contains(ch))
{
a += ch;
}
}
return a;
}
public static string RemoveEverythingBeforeLastRemoveString(string s, string removeMe)
{
int index = s.LastIndexOf(removeMe);
int removelength = removeMe.Length;
if (index > 0)
s = s.Substring(index + removelength);
return s;
}
public static string RemoveEverythingBeforeLastKeepString(string s, string removeMe)
{
int index = s.LastIndexOf(removeMe);
if (index > 0)
s = s.Substring(index);
return s;
}
}
}