gpt4 book ai didi

java - 如何使用 HashMap 值形成字符串?

转载 作者:行者123 更新时间:2023-12-02 03:53:03 28 4
gpt4 key购买 nike

我有以下代码将特定的字符串字符映射为字母:

 String a = "94466602777330999666887770223377778077778 883 336687777";
String[] tokens = a.split("(?<=(.))(?!\\1)");
Map<String, String> hmap = new HashMap<String, String>();

hmap.put("2", "A");
hmap.put("22", "B");
hmap.put("222", "C");
hmap.put("3", "D");
hmap.put("33", "E");
hmap.put("333", "F");
hmap.put("4", "G");
hmap.put("44", "H");
hmap.put("444", "I");
hmap.put("5", "J");
hmap.put("55", "K");
hmap.put("555", "L");
hmap.put("6", "M");
hmap.put("66", "N");
hmap.put("666", "O");
hmap.put("7", "P");
hmap.put("77", "Q");
hmap.put("777", "R");
hmap.put("7777", "S");
hmap.put("8", "T");
hmap.put("88", "U");
hmap.put("888", "V");
hmap.put("9", "W");
hmap.put("99", "X");
hmap.put("999", "Y");
hmap.put("9999", "Z");
hmap.put("1", ".");
hmap.put("0", " ");

完成 HashMap 后,我想返回一个字符串,将之前的字符串“94466602777330999666887770223377778077778 883 336687777”转换为“谁是你最好的学生”

最佳答案

正如您所提到的,您已经将输入划分为字符串数组。

StringBuilder builder = new StringBuilder();

for (String s: tokens) {
builder.append(hmap.get(s));
}

String result = builder.toString();

关于java - 如何使用 HashMap 值形成字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35714391/

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