This commit is contained in:
雷欧(林平凡)
2025-09-25 16:19:42 +08:00
parent cfd68f73e8
commit 0b58b4d1c4

View File

@@ -285,6 +285,7 @@ public class InstructionServiceImpl implements IInstructionService {
private String handleTF(String input) { private String handleTF(String input) {
String body = input.replaceFirst("^TF\\s*", ""); String body = input.replaceFirst("^TF\\s*", "");
body = body.replaceAll("[啊阿]", "");
String[] lines = body.split("\\r?\\n+"); String[] lines = body.split("\\r?\\n+");
List<String> outputs = new ArrayList<>(); List<String> outputs = new ArrayList<>();
for (String line : lines) { for (String line : lines) {