使用行尾字符循环字符串

时间:2016-05-23 23:46:24

标签: java

我想循环并显示由行尾字符分隔的每一行

public static void main(String[] args) {
        String s = "a\n" +
                "b\n" +
                "c";

        for(int a=0;a<=2;a++) {
            System.out.println(a);
        }
    }

我想通过循环打印a,然后是b,然后c完全来自String s。我怎么能这样做?

0 个答案:

没有答案