Регулярное выражение 'и' оператор - PullRequest
0 голосов
/ 17 января 2019

Я работаю над консолью WebView и хочу использовать регулярные выражения для обнаружения цветовых кодов в строке. У меня есть выражение:

(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]+)

Соответствует только тогда, когда colorIndex сопровождается текстом. Пример:

&1Hello &2World&1!

(«Привет» - синий, «Мир» - зеленый, «!» - синий)

Я хочу добавить форматы в текст (полужирный, курсив и т. Д.), Поэтому мне нужно обнаруживать изменения формата, когда colorIndex не сопровождается текстом. Пример:

&1Hello &l&2World &r&1&!

(«Hello» - синий, «World» - жирный и зеленый, «!» - нормальный и синий)
Но я & l & 2World 'только окрашен, потому что' §l 'не сопровождается текстом.

Что мне нужно изменить в выражении, чтобы сделать это?

Спасибо, и извините за мой плохой английский!

EDIT:
WebViewConsole.class:

public class WebViewConsole {

    WebView console;
    String contentHtml = "";

    Pattern pattern = Pattern.compile("(&(?<colorIndex>\\d|[eadfcblmor]))?(?<text>[^(&\\d|[eadfcblmor])]+)");

    char[] colors = {'1', '2', '3', '4', '5', '6', '7', '8', '9', 'e', 'a', 'd', 'f', 'c', 'b'};
    String[] formats = {"o", "l", "m"};

    public WebViewConsole() {
        console = new WebView();
    }

    public List<String> getHtmlFormat(String text) {
        List<String> formats = new ArrayList<>();
        String color = "white";
        String format = "normal";

        Matcher matcher = pattern.matcher(text);
        while (matcher.find()) {
            String codeInText = matcher.group("colorIndex");
            String textInText = matcher.group("text");

            if (codeInText != null/* && codeInText.matches("\\d|[eadfcblmor]+")*/) {
                if (isFormat(codeInText)) {
                    format = getFormatName(codeInText);
                } else {
                    color = getFormatName(codeInText);
                }

            } else {
                color = "white";
                format = "normal";
            }

            if (codeInText != null && codeInText.matches("\\d|[eadfcblmor]+")) {
                formats.add("<span style=\"color:" + color + ";font-weight:" + format + "\">" + textInText + "</span>");
            }
        }
        return formats;
    }

    public void appendText(String text) {
        for (String htmlText : getHtmlFormat(text)) {
            contentHtml += htmlText.replaceAll("\\n", "<br>");
        }
        //contentHtml += "<br>";
        getConsole().getEngine().loadContent(contentHtml);
    }

    public WebView getConsole() {
        return console;
    }

    public boolean isFormat(String code) {
        if (!code.equalsIgnoreCase("r")) {
            for (String format : formats) {
                if (format.equals(code)) {
                    return true;
                }
            }
        }
        return false;
    }

    public String getFormatName(String code) {
        switch (code) {
            case "1":
                return "blue";
            case "2":
                return "darkgreen";
            case "l":
                return "bold";
            case "o":
                return "bold";
        }
        return null;
    }

    public void clear() {
        contentHtml = "";
        getConsole().getEngine().loadContent(contentHtml);
    }
}

1 Ответ

0 голосов
/ 18 января 2019

Я нашел решение с небольшой помощью.

Я изменил регулярное выражение с:

(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]+)

Кому:

(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]*)
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...