java中切割字符串

java中切割字符串,第1张

public class MainTest {

public static void main(String[] args) {

String[] s = new String("中;国;我;爱;你;")split(";");

for (int i = 0; i < slength; i++) {

Systemoutprintln(s[i]);

}

}

}

请采纳答案,支持我一下。

        // 测试字符串

        String source = "012345678a012345678b012345678c012345678d012345678e012345678f01234";

        // 规定 长度

        int needLength = 10;

        // 优化的结果集。

        // 也可以直接 List<String> resultList = new ArrayList<String>();

        List<String> resultList = new ArrayList<String>(sourcelength()

                % needLength + 1);

        

        String subStr;

        int endIndex = 0;

        

        while (sourcelength() > 0) {

            // 判断截取的长度

            endIndex = sourcelength() > needLength needLength : source

                    length();

            // 获得街区后的长度

            subStr = sourcesubstring(0, endIndex);

            // 截取剩余的字符串

            source = sourcesubstring(endIndex);

            resultListadd(subStr);

        }

        Systemoutprintln(resultList);

String[] array="2011-11-11"split("-");

String year=array[0];

String month=array[1];

String day=array[2];

class Test

{

public static void main(String[] args)

{

String str="adfaf bc dddd 33 40";

String[] strs=strsplit(" ");

for(String element : strs)

Systemoutprintln(element);

}

}

你要的数据也就是数组中的第一个元素了

以上就是关于java中切割字符串全部的内容,包括:java中切割字符串、java将70个字符进行分割、java 中怎么把2002-11-11这个字符串分割成单独的字符串 年月日。并分别取出等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/10076933.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-05
下一篇 2023-05-05

发表评论

登录后才能评论

评论列表(0条)

保存