-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextSplitter.html
More file actions
320 lines (282 loc) · 9.38 KB
/
Copy pathTextSplitter.html
File metadata and controls
320 lines (282 loc) · 9.38 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>文本拆分器 - JustHTML 只需网页</title>
<script>
/**
* 动态加载(强制去除缓存) CSS 的函数
* @param {string} src - 要加载的 CSS 的 src 链接
* @returns {Promise} 返回一个 Promise 对象,用于处理异步加载
*/
function loadStyle(src) {
return new Promise((resolve, reject) => {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = src + '?v=' + new Date().getTime(); // 使用时间戳避免缓存
link.async = true;
link.onload = resolve;
link.onerror = reject;
document.head.appendChild(link);
});
}
/**
* 动态加载(强制去除缓存) JS 的函数
* @param {string} src - 要加载的 JS 的 src 链接
* @returns {Promise} 返回一个 Promise 对象,用于处理异步加载
*/
function loadScript(src) {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = src + '?v=' + new Date().getTime(); // 使用时间戳避免缓存
script.async = true;
script.onload = resolve;
script.onerror = reject;
document.head.appendChild(script);
});
}
</script>
<script>
loadStyle('../assets/style.css')
let scriptArray = [
"../assets/AddHeader_Tools.js",
"../assets/AddFooter.js",
"../assets/AddIco.js",
"../assets/AutoRun.js",
]
scriptArray.forEach(script => {
loadScript(script);
});
</script>
<script src="../package/Vue/code/vue.global.prod.js"></script>
<script type="module" src="../package/Sober/code/main.js"></script>
<style>
.controls {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin: 15px 0;
}
.info-box {
background-color: var(--bg-tertiary);
padding: 10px;
border-radius: var(--border-radius);
margin: 10px 0;
}
.split-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
margin: 15px 0;
}
.option-item {
display: flex;
flex-direction: column;
}
.option-item label {
margin-bottom: 5px;
color: var(--accent-color);
}
.option-item input, .option-item select {
padding: 8px;
}
.split-result {
margin-top: 20px;
}
.split-part {
margin: 10px 0;
padding: 10px;
background-color: var(--bg-tertiary);
border-radius: var(--border-radius);
}
.split-part-header {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
color: var(--accent-color);
}
</style>
</head>
<body>
<div id="app">
<div class="container">
<a href="../index.html" class="back-link">← 返回首页</a>
<div class="tool-section">
<h2>文本拆分器</h2>
<p>按指定规则拆分文本</p>
<div class="info-box">
<p><strong>功能说明:</strong></p>
<p>• 按字符数拆分:将文本按固定字符数拆分成多个片段</p>
<p>• 按分隔符拆分:使用自定义分隔符拆分文本</p>
<p>• 按行拆分:将多行文本按行拆分</p>
<p>• 按句子拆分:根据句号、问号、感叹号拆分句子</p>
</div>
<div class="split-options">
<div class="option-item">
<label for="splitMethod">拆分方式</label>
<select id="splitMethod" v-model="splitMethod" @change="onMethodChange">
<option value="byCharCount">按字符数拆分</option>
<option value="byDelimiter">按分隔符拆分</option>
<option value="byLines">按行拆分</option>
<option value="bySentences">按句子拆分</option>
</select>
</div>
<div class="option-item" v-if="splitMethod === 'byCharCount'">
<label for="charCount">每段字符数</label>
<input
type="number"
id="charCount"
v-model.number="charCount"
min="1"
placeholder="输入每段字符数"
>
</div>
<div class="option-item" v-if="splitMethod === 'byDelimiter'">
<label for="delimiter">分隔符</label>
<input
type="text"
id="delimiter"
v-model="delimiter"
placeholder="输入分隔符"
>
</div>
</div>
<div>
<textarea
v-model="inputText"
placeholder="在此输入要拆分的文本..."
rows="10"
></textarea>
<div class="controls">
<button @click="splitText">拆分文本</button>
<button @click="clearText">清空</button>
<button @click="copyAll">复制全部</button>
</div>
<div class="split-result" v-if="resultParts.length > 0">
<h3>拆分结果 (共{{ resultParts.length }}段):</h3>
<div v-for="(part, index) in resultParts" :key="index" class="split-part">
<div class="split-part-header">
<span>第{{ index + 1 }}段 ({{ part.length }}字符)</span>
<button @click="copyPart(part)">复制此段</button>
</div>
<pre>{{ part }}</pre>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
const { createApp, ref } = Vue;
createApp({
setup() {
const inputText = ref('');
const splitMethod = ref('byCharCount');
const charCount = ref(100);
const delimiter = ref(',');
const resultParts = ref([]);
// 方法改变时重置结果
const onMethodChange = () => {
resultParts.value = [];
};
// 拆分文本
const splitText = () => {
if (!inputText.value) {
resultParts.value = [];
return;
}
switch(splitMethod.value) {
case 'byCharCount':
// 按字符数拆分
if (!charCount.value || charCount.value <= 0) {
alert('请输入有效的字符数');
return;
}
resultParts.value = [];
for (let i = 0; i < inputText.value.length; i += charCount.value) {
resultParts.value.push(inputText.value.substring(i, i + charCount.value));
}
break;
case 'byDelimiter':
// 按分隔符拆分
if (!delimiter.value) {
alert('请输入分隔符');
return;
}
resultParts.value = inputText.value.split(delimiter.value);
// 过滤空字符串
resultParts.value = resultParts.value.filter(part => part.trim() !== '');
break;
case 'byLines':
// 按行拆分
resultParts.value = inputText.value.split(/\r?\n/);
// 过滤空行
resultParts.value = resultParts.value.filter(line => line.trim() !== '');
break;
case 'bySentences':
// 按句子拆分
// 使用句号、问号、感叹号作为句子分隔符
const sentences = inputText.value.split(/([。.!?!?])/);
resultParts.value = [];
for (let i = 0; i < sentences.length; i += 2) {
let sentence = sentences[i] || '';
if (i + 1 < sentences.length) {
sentence += sentences[i + 1]; // 添加标点符号
}
if (sentence.trim() !== '') {
resultParts.value.push(sentence);
}
}
break;
default:
resultParts.value = [];
}
};
// 清空文本
const clearText = () => {
inputText.value = '';
resultParts.value = [];
};
// 复制全部结果
const copyAll = () => {
if (resultParts.value.length > 0) {
const allText = resultParts.value.join('\n---\n'); // 用分隔线分隔各部分
navigator.clipboard.writeText(allText)
.then(() => {
alert('全部结果已复制到剪贴板!');
})
.catch(err => {
console.error('复制失败: ', err);
alert('复制失败');
});
}
};
// 复制单个部分
const copyPart = (part) => {
navigator.clipboard.writeText(part)
.then(() => {
alert('已复制此段到剪贴板!');
})
.catch(err => {
console.error('复制失败: ', err);
alert('复制失败');
});
};
return {
inputText,
splitMethod,
charCount,
delimiter,
resultParts,
onMethodChange,
splitText,
clearText,
copyAll,
copyPart
};
}
}).mount('#app');
</script>
</body>
</html>