1
0
Fork 0

slightly optimized the special character positions

This commit is contained in:
sspanak 2024-05-16 17:19:43 +03:00 committed by Dimo Karaivanov
parent fe4e2ce2bb
commit 8ce3b73e57

View file

@ -12,23 +12,23 @@ public class Characters {
));
final public static ArrayList<String> PunctuationArabic = new ArrayList<>(Arrays.asList(
"،", ".", "-", "(", ")", "[", "]", "&", "§", "~", "`", "\"", "'", "؛", ":", "!", "؟"
"،", ".", "-", "(", ")", "&", "~", "`", "'", "\"", "؛", ":", "!", "؟"
));
final public static ArrayList<String> PunctuationEnglish = new ArrayList<>(Arrays.asList(
",", ".", "-", "(", ")", "[", "]", "&", "§", "~", "`", "'", ";", ":", "\"", "!", "?"
",", ".", "-", "(", ")", "&", "~", "`", ";", ":", "'", "\"", "!", "?"
));
final public static ArrayList<String> PunctuationFrench = new ArrayList<>(Arrays.asList(
",", ".", "-", "«", "»", "(", ")", "[", "]", "&", "§", "~", "\"", "`", "'", ";", ":", "!", "?"
",", ".", "-", "«", "»", "(", ")", "&", "`", "~", ";", ":", "'", "\"", "!", "?"
));
final public static ArrayList<String> PunctuationGerman = new ArrayList<>(Arrays.asList(
",", ".", "-", "", "", "(", ")", "[", "]", "&", "§", "~", "\"", "`", "'", ";", ":", "!", "?"
",", ".", "-", "", "", "(", ")", "&", "~", "`", "'", "\"", ";", ":", "!", "?"
));
final public static ArrayList<String> PunctuationGreek = new ArrayList<>(Arrays.asList(
",", ".", "-", "«", "»", "(", ")", "[", "]", "&", "§", "~", "\"", "`", "'", "·", ":", "!", ";"
",", ".", "-", "«", "»", "(", ")", "&", "~", "`", "'", "\"", ";", ":", "!", ";"
));
final public static ArrayList<String> Currency = new ArrayList<>(Arrays.asList(
@ -36,7 +36,7 @@ public class Characters {
));
final public static ArrayList<String> Special = new ArrayList<>(Arrays.asList(
" ", "\n", "@", "_", "#", "%", "{", "}", "|", "^", "<", ">", "\\", "/", "=", "*", "+"
" ", "\n", "@", "_", "#", "%", "[", "]", "{", "}", "§", "|", "^", "<", ">", "\\", "/", "=", "*", "+"
));
final private static ArrayList<String> TextEmoticons = new ArrayList<>(Arrays.asList(