gpt4 book ai didi

java - 如何创建正则表达式来替换已知字符串,同时保持可选参数不变?

转载 作者:行者123 更新时间:2023-11-30 07:39:18 26 4
gpt4 key购买 nike

我已经尝试了一段时间,但效果不佳:在Java中,我试图创建一个正则表达式来匹配和替换字符串中的(据我所知)字符串,同时保持可选参数完整。

输入示例:

{067e6162-3b6f-4ae2-a171-2470b63dff00}
{067e6162-3b6f-4ae2-a171-2470b63dff00,number}
{067e6162-3b6f-4ae2-a171-2470b63dff00,number,integer}
{067e6162-3b6f-4ae2-a171-2470b63dff00,choice,1#one more item|1<another {067e6162-3b6f-4ae2-a171-2470b63dff00,number,integer} items}

(请注意,最后一个示例包含对同一输入字符串的嵌套引用)。该格式始终将要替换的字符串括在大括号 {...} 中,但带有可选的逗号分隔参数列表。

我想用数字替换输入字符串,例如对于上面的输入字符串,结果应该是:

{2}
{2,number}
{2,number,integer}
{2,choice,1#one more item|1<another {2,number,integer} items}

理想情况下,我希望有一个足够灵活的正则表达式来处理(几乎)任何字符串作为要替换的模式,因此不仅仅是上面的 UUID 类型的字符串,还包括这样的字符串:

A test string with {the_known_input_value_to_be_replaced,number,integer} not replacing the_known_input_value_to_be_replaced if its not in curly brackets of course.

最终应该是这样的:

A test string with {3,number,integer} not replacing the_known_input_value_to_be_replaced if its not in curly brackets of course.

请注意,只有当输入字符串位于大括号中时才应进行替换。在 Java 中,我将能够在运行时构建模式,详细考虑要替换的字符串。

我尝试过,例如\{(067e6162-3b6f-4ae2-a171-2470b63dff00)(,?.*)\} (尚未转义 java)和更通用的方法,例如 \{(+?)(, ?.*)\} ,但他们都没有做得正确。

高度赞赏正则表达式忍者的任何建议:)

最佳答案

如果已知的旧字符串总是出现在 { 之后你可以使用

String result = old_text.replace("{" + my_old_keyword, "{" + my_new_keyword);

如果大括号内确实有多个已知字符串(并且没有需要处理的转义大括号),则可以使用以下代码:

String input = "067e6162-3b6f-4ae2-a171-2470b63dff00 is outside {067e6162-3b6f-4ae2-a171-2470b63dff00,choice,067e6162-3b6f-4ae2-a171-2470b63dff00,1#one more item|1<another {067e6162-3b6f-4ae2-a171-2470b63dff00,number,067e6162-3b6f-4ae2-a171-2470b63dff00,integer} items} 067e6162-3b6f-4ae2-a171-2470b63dff00 is outside ";
String old_key = "067e6162-3b6f-4ae2-a171-2470b63dff00";
String new_key = "NEW_KEY";
List<String> chunks = replaceInBalancedSubstrings(input, '{', '}', old_key, new_key);
System.out.println(String.join("", chunks));

结果:067e6162-3b6f-4ae2-a171-2470b63dff00 is outside {{NEW_KEY,choice,NEW_KEY,1#one more item|1<another {NEW_KEY,number,NEW_KEY,integer} items} 067e6162-3b6f-4ae2-a171-2470b63dff00 is outside

replaceInBalancedSubstrings方法如下:

public static List<String> replaceInBalancedSubstrings(String s, Character markStart, Character markEnd, String old_key, String new_key) {
List<String> subTreeList = new ArrayList<String>();
int level = 0;
int prevStart = 0;
StringBuffer sb = new StringBuffer();
int lastOpenBracket = -1;
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (level == 0) {
sb.append(c);
}
if (c == markStart) {
level++;
if (level == 1) {
lastOpenBracket = i;
if (sb.length() > 0) {
subTreeList.add(sb.toString());
sb.delete(0, sb.length());
}
}
}
else if (c == markEnd) {
if (level == 1) {
subTreeList.add(s.substring(lastOpenBracket, i+1).replace(old_key, new_key)); // String replacement here
}
level--;
}
}
if (sb.length() > 0) {
subTreeList.add(sb.toString());
}
return subTreeList;
}

参见IDEONE demo

此代码将仅处理平衡(嵌套)大括号内的子字符串内的替换。

关于java - 如何创建正则表达式来替换已知字符串,同时保持可选参数不变?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34923562/

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