gpt4 book ai didi

java - 如何修剪字符串中两个或三个逗号之后的字符串

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

我有一个像

这样的字符串
"Domlur, Old Hal Airport Road, Bangalore, Karnataka" 

在此字符串中,我只想存储“Domlur,Old Hal Airport Road”并修剪字符串的其余部分。

经过谷歌的一些研究,我想我会在这里得到一些帮助。提前致谢。

最佳答案

试试这个..

String text = "Domlur, Old Hal Airport Road, Bangalore, Karnataka";
String[] text_array = text.split(",");
String result = text_array[0]+","+text_array[1];
Log.v("result",result);

关于java - 如何修剪字符串中两个或三个逗号之后的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23882242/

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