Skip to content

Commit 35625a4

Browse files
authored
日本語と英語が混ざった文章に間が開いてしまうのを修正
1 parent 61eda53 commit 35625a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: core/src/main/java/dev/felnull/itts/core/dict/RegexUtil.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public String replaceText(String text) {
7878
createdText.add(txt);
7979
}
8080

81-
return String.join(" ", createdText);
81+
return String.join("", createdText);
8282
}
8383

8484

@@ -111,4 +111,4 @@ public RegexOption(int priority, String replacedText, Function<String, Boolean>
111111
}
112112
}
113113

114-
}
114+
}

0 commit comments

Comments
 (0)