gpt4 book ai didi

java - 正则表达式 'and' 运算符

转载 作者:太空宇宙 更新时间:2023-11-04 09:55:09 25 4
gpt4 key购买 nike

我正在开发 WebView 控制台,我想使用正则表达式来检测字符串中的颜色代码。我有一个表情:

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

仅当 colorIndex 后跟文本时才匹配。示例:

&1Hello &2World&1!

(“Hello”是蓝色,“World”是绿色,“!”是蓝色)

我想在文本中添加格式(粗体、斜体等),因此当 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);
}
}

最佳答案

我在一点帮助下找到了解决方案。

我将正则表达式更改为:

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

致:

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

关于java - 正则表达式 'and' 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54240484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com