feat(*): 代码仓库初始化

This commit is contained in:
2025-11-07 18:39:29 +08:00
commit b1aeb6b39b
36 changed files with 1700 additions and 0 deletions

14
Server/1/aa.js Normal file
View File

@@ -0,0 +1,14 @@
const fs = require("fs");
fs.readFile(__dirname + "/aa.txt", "utf8", (err, data) => {
if (err) return;
const content = data
.replace(/(\d+)[、.](?=\s*)/g, "$1、 ")
.replace(/([A-D])[.、](?=\s*)/g, "$1. ")
.replace(/\r?\n([B-D]\.)/g, "\t$1");
fs.writeFile(__dirname + "/new.txt", content, "utf8", (err) => {
if (err) return;
});
});