-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrops.cjs
209 lines (198 loc) · 4.8 KB
/
strops.cjs
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
// @ts-check
/**
* Finds index pairs of all substrings which match to arguments from '...substringsToFind'.
* Returns { startIndex: endIndex, ... }
*
* @param {string} sourceString
* @param {string[]} substringsToFind
* @returns {Object}
*/
function getIndexes(sourceString, ...substringsToFind) {
const allSubstrings = {}
for (const substringToFind of substringsToFind) {
let lastIndex = 0
while (true) {
const entryIndex = sourceString.indexOf(substringToFind, lastIndex)
if (entryIndex === -1) break
lastIndex = entryIndex + substringToFind.length
allSubstrings[entryIndex] = lastIndex
}
}
return allSubstrings
}
/**
* Finds index pairs of all substring between A and B (not including A and B)
* Returns { startIndex: endIndex, ... }
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {Object}
*/
function getIndexesAtoBInner(sourceString, a, b) {
const allSubstrings = {}
let lastIndex = 0
while (true) {
const indexA = sourceString.indexOf(a, lastIndex) + a.length
const indexB = sourceString.indexOf(b, lastIndex + indexA)
if (sourceString.indexOf(a, lastIndex) === -1 || indexB === -1) break
lastIndex = indexB + b.length
allSubstrings[indexA] = indexB
}
return allSubstrings
}
/**
* Finds index pairs of all substrings from A to B (including A and B).
* Returns { startIndex: endIndex, ... }
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {Object}
*/
function getIndexesAtoB(sourceString, a, b) {
const allSubstrings = {}
let lastIndex = 0
while (true) {
const indexA = sourceString.indexOf(a, lastIndex)
const indexB = sourceString.indexOf(b, lastIndex + a.length) + b.length
if (indexA === -1 || sourceString.indexOf(b, lastIndex) === -1) break
lastIndex = indexB
allSubstrings[indexA] = indexB
}
return allSubstrings
}
/**
* Finds all substrings between A and B (not including A and B)
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {Array}
*/
function getAtoBInner(sourceString, a, b) {
const arr = []
const entrySlices = getIndexesAtoBInner(sourceString, a, b)
for (const startIndex in entrySlices) {
arr.push(
sourceString.substring(Number(startIndex), entrySlices[startIndex])
)
}
return arr
}
/**
* Finds all substrings from A to B (including A and B)
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {Array}
*/
function getAtoB(sourceString, a, b) {
const arr = []
const entrySlices = getIndexesAtoBInner(sourceString, a, b)
for (const startIndex in entrySlices) {
arr.push(
sourceString.substring(
Number(startIndex) - a.length,
entrySlices[startIndex] + b.length
)
)
}
return arr
}
/**
* Removes all substrings which match to arguments from '...substringsToRemove'
*
* @param {string} sourceString
* @param {string[]} substringsToRemove
* @returns {string}
*/
function remove(sourceString, ...substringsToRemove) {
let string = ''
const removingSlices = getIndexes(sourceString, ...substringsToRemove)
for (let i = 0; i < sourceString.length; ) {
if (removingSlices[i]) {
i = removingSlices[i]
continue
}
string += sourceString[i]
i++
}
return string
}
/**
* Removes all substrings between A and B (not including A and B)
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {string}
*/
function removeAtoBInner(sourceString, a, b) {
let string = ''
const removingSlices = getIndexesAtoBInner(sourceString, a, b)
for (let i = 0; i < sourceString.length; ) {
if (removingSlices[i]) {
i = removingSlices[i]
continue
}
string += sourceString[i]
i++
}
return string
}
/**
* Removes all substrings from A to B (including A and B)
*
* @param {string} sourceString
* @param {string} a
* @param {string} b
* @returns {string}
*/
function removeAtoB(sourceString, a, b) {
let string = ''
const removingSlices = getIndexesAtoB(sourceString, a, b)
for (let i = 0; i < sourceString.length; ) {
if (removingSlices[i]) {
i = removingSlices[i]
continue
}
string += sourceString[i]
i++
}
return string
}
/**
* Replaces all substrings which match to arguments from ...substringsToReplace
*
* @param {string} sourceString
* @param {string} newSubstring
* @param {string[]} substringsToReplace
* @returns {string}
*/
function replace(sourceString, newSubstring, ...substringsToReplace) {
let string = ''
const removingSlices = getIndexes(sourceString, ...substringsToReplace)
for (let i = 0; i < sourceString.length; ) {
if (removingSlices[i]) {
i = removingSlices[i]
string += newSubstring
continue
}
string += sourceString[i]
i++
}
return string
}
module.exports = {
getIndexes,
getIndexesAtoB,
getIndexesAtoBInner,
getAtoB,
getAtoBInner,
remove,
removeAtoBInner,
removeAtoB,
replace,
}