我有一个HashMap,里面有键和值。我想用字符串中映射的值替换键。
在字符串中,键被写成@keyname或@“keyname”,这些应替换为map.get(“keyname”)
假设我们的地图是这个
"key1" : "2"
"key2" : "3"
"key3" : "4"
"key 4" : "5"
"key-5" : "6"
所以如果我们处理字符串“Hello world,Iam@key1 years old.”,它将变成“Hello world,Iam 2 years old.”。
我们可以用@“key1”代替@key1。如果我们不使用引号,则在键名后面应该有一个空白(空格字符)或EOF,键名中不应该有空白。但是如果键名中有一个空白,那么它应该在引号中。
如果我们处理字符串“Hello world,I am@”Key@“Key1”“years old.”,那么第一步它应该替换特殊字符串中的特殊字符串,变成“Hello world,I am@”Key2“years old.”第二步应该是“你好,世界,我3岁。”
我已经为一个特殊的字符串做过了,它不识别特殊字符串中的特殊字符串。代码如下:
private static Pattern specialStringPattern = Pattern.compile("@\"([^\"]*?)\"|@\\S+");
/** this replaces the keys inside a string with their values.
* for example @keyName or @"keyName" is replaced with the value of the keyName. */
public static String specialStrings(String s) {
Matcher matcher = specialStringPattern.matcher(s);
while (matcher.find()) {
String text = matcher.group();
text = text.replace("@","").replaceAll("\"","");
s = s.replace(matcher.group(),map.get(text));
}
return s;
}
对不起,我的英语,我缺乏正则表达式知识。我想只要稍微修改一下代码,就应该很容易得到答案。
下面是我需要的一些示例:
There is @key1 apples on the table.
There is 2 apples on the table.
There is @"key1" apples on the table.
There is 2 apples on the table.
There is @key 4 apples on the table.
There is null 4 apples on the table.
There is @"key 4" apples on the table.
There is 5 apples on the table.
There is @key@key2 apples on the table.
There is @key3 apples on the table. (second step)
There is 4 apples on the table. (final output)
There is @"key @"key3"" apples on the table.
There is @"key 4" apples on the table. (second step)
There is 5 apples on the table. (final output)
There is @"key @key3" apples on the table.
There is @"key 4" apples on the table. (second step)
There is 5 apples on the table. (final output)
There is @"key @key3 " apples on the table.
There is @"key 4 " apples on the table. (second step)
There is null apples on the table. (final output)
There is @key-5 apples on the table.
There is 6 apples on the table.
不使用正则表达式:
for (boolean hit = true; hit;) {
hit = false;
for (String key : map.keySet()) {
if (str.contains("@\"" + key + "\"")) {
str = str.replace("@\"" + key + "\"", map.get(key));
hit = true;
} else if (str.contains("@" + key )) {
str = str.replace("@" + key + "", map.get(key));
hit = true;
}
}
}
我在这里创建了与您的示例相匹配的正则表达式:https://regex101.com/r/nudyel/2
@(\“[\w\s]+\”)(?!@(\w+)@(\w+))@(\w+)
您只需将函数修改为递归:
public static String specialStrings(String s) {
Matcher matcher = specialStringPattern.matcher(s);
boolean findAgain = false;
while (matcher.find()) {
String text = matcher.group();
text = text.replace("@","").replaceAll("\"","");
s = s.replace(matcher.group(),map.get(text));
findAgain = true;
}
if (findAgain) return specialStrings(s);
return s;
}
[更新]
正则表达式:https://regex101.com/r/nudyel/4
@(\“[\w\s-]+\”)(?!@([\w-]+)@([\w-]+))@([\w-]+)
我想检查一个字符串是否包含特殊字符,比如!@#$%^&*.,<>/\'“;:?如果字符串至少包含其中一个字符,则返回true。 我尝试使用以下regex脚本:
我试图为密码字段创建一个验证,它只允许字符和 时有什么区别,以及哪些字符来自
我有一个从xml文档中读取数据的程序。在这个xml文档中,一些属性包含特殊字符,如“\n”、“t”等。 有没有一种简单的方法可以将所有这些字符串替换为实际的字符,或者我必须像下面的例子一样为每个字符手动替换? 手动示例: 编辑: 我正在寻找某种方法来处理字符串,就像这样的转义字符串(尽管我知道这是行不通的)
问题内容: 如果字符串中除了下划线以外不包含任何特殊字符,则只能在其程序中使用。我该如何检查? 我尝试使用unicodedata库。但是特殊字符只是被标准字符所代替。 问题答案: 您可以像这样使用和运行 用这条线 我们正在准备不允许使用的标点符号列表。如您所愿,我们正在从列表中删除并准备新的。因为在集合中查找速度更快。 如果至少一个字符位于中,则函数将返回。 编辑: 如评论中所述,这是正则表达式解
我正在学习正则表达式并尝试处理一个小任务。 我将输入量作为字符串,并将其转换为美元格式。 输入字符串如下所示 输出字符串看起来像这样 使用正则表达式,我试图避免使用below正则表达式在输入量中出现前导零和逗号。例如,如果输入类似 我正在用 除了前导零之外,我无法替换可能存在的任何其他字符。例如,如果输入中已经存在“$”,则转换时会出现错误。我不知道该怎么办。
问题内容: 我正在使用urllib从网站获取html字符串,并且需要将html文档中的每个单词放入列表中。 这是我到目前为止的代码。我不断收到错误消息。我还复制了以下错误。 这是错误。 问题答案: str.replace是您要执行的操作错误的函数(除了使用不正确之外)。您想用空格代替集合的任何字符,而不是用单个空格代替整个集合(后者是replace的作用)。您可以使用以下翻译: 这将创建一个映射,