gpt4 book ai didi

java - 检查 hashmap 中是否存在 'Key'

转载 作者:行者123 更新时间:2023-12-01 12:50:09 25 4
gpt4 key购买 nike

我有一个 HashMap ,其键和值是“字符串”。我想通过忽略键中“$”后面的字符串来检查特定键是否存在。

HashMap 包含“acctId$accountId”、“acctId$desc”、“acctId$crncyCode”等键。

Iterator itx = uiToSrvFldMapList.entrySet().iterator();
if(uiToSrvFldMapList.containsKey(cellId)){
String sSrvFld = (String) uiToSrvFldMapList.get("acctId");
System.out.println("sSrvFld :: " +sSrvFld);

最佳答案

public static void main(String[] args) {
String s = "acctId$accountId";
s = s.replaceAll("\\$.*", "");// remove everything after $
System.out.println(s);
// do hm.get(s) here
}

关于java - 检查 hashmap 中是否存在 'Key',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24285636/

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