从 ArrayList 中检索数据

发布于 2024-11-30 06:48:35 字数 275 浏览 0 评论 0原文

我有这个变量:

protected ArrayList<String> list = new ArrayList<String>();

数据采用这种形式:

data = date + ": " + y + "L/100KM "+ " " + value1 + "dt "+ value2 + "KM\n";

我想从中检索数据value1。我该怎么做?

I have this variable:

protected ArrayList<String> list = new ArrayList<String>();

The data is in this form:

data = date + ": " + y + "L/100KM "+ " " + value1 + "dt "+ value2 + "KM\n";

I want to retrieve a data value1 from it. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人疚 2024-12-07 06:48:35

你可以像这样在空格上分割:

String[] result = data.split(" ");

你的 value1 应该是这个数组中的第三项,所以你可以通过调用来访问它:

String value1 = result[2];

或者如果你写了这段代码,为什么你会尝试从你刚刚放置的字符串中获取值珍视自己。 :)

you can just split on whitespace like this:

String[] result = data.split(" ");

your value1 should be third item in this array, so you can access it by calling:

String value1 = result[2];

Or if you wrote this code why the hell would you try to get value from a string where you just put that value yourself. :)

っ〆星空下的拥抱 2024-12-07 06:48:35

您将必须使用正则表达式。

You will have to use regular expressions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文