gpt4 book ai didi

java - 将句子拆分为两个单词并作为键、值存储在 HashMap 中

转载 作者:行者123 更新时间:2023-12-02 05:08:34 25 4
gpt4 key购买 nike

我需要将一个句子分成两个字符串,第一个字符串作为键存储在 HashMap 中,第二个字符串作为值存储在 HashMap 中。例如:

String sent="4562=This is example";

这是我的句子,我使用以下行分成两个字符串:

sent.split("=");

我想将第一个字符串 (4562) 存储为键,将第二个字符串存储为 HashMap 中的值。

您能分享一下您的想法或问题的解决方案吗?

最佳答案

您正在陈述自己的答案:

HashMap<String, String> map = new HashMap<String, String>(); //initialize the hashmap
String s = "4562=This is example"; //initialize your string
String[] parts = s.split("="); //split it on the =
map.put(parts[0], parts[1]); //put it in the map as key, value

关于java - 将句子拆分为两个单词并作为键、值存储在 HashMap 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27547746/

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