我正在WebView控制台上工作,我想使用正则表达式来检测字符串中的颜色代码。我有一个表情:
(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]+)
仅当colorIndex后接文本时才匹配。示例:
&1Hello &2World&1!
(“你好”是蓝色,“世界”是绿色,“!”是蓝色)
我想在文本中添加格式(粗体,斜体等),因此当colorIndex后面没有文本时,我需要检测格式更改。示例:
&1Hello &l&2World &r&1&!
(“ Hello”是蓝色,“ World”是粗体和绿色,“!”是正常和蓝色)
但是我只对'&l&2World'着色,因为'§l'后面没有文字。
为此,我需要在表达式中进行哪些更改?
谢谢,抱歉我的英语不好!
编辑:
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);
}
}
答案 0 :(得分:0)
我在一点帮助下找到了解决方案。
我从以下位置更改了正则表达式:
(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]+)
收件人:
(&(?<colorIndex>\d|[eadfcblmor]))?(?<text>[^(&\d|[eadfcblmor])]*)