Java经典实例:处理单个字符串详解编程语言

使用for循环和String对象的charAt()方法;或者,使用“for each”循环和String对象的toCharArray()方法。

/** 
 * Created by Frank 
 */ 
public class StrCharAt { 
    public static void main(String[] args) { 
        String a = "A quick bronze fox lept a lazy bovine"; 
        for (int i = 0; i < a.length(); i++) { 
            System.out.println("Char " + i + " is " + a.charAt(i)); 
        } 
    } 
} 
public class ForEachChar { 
    public static void main(String[] args) { 
        String s = "Hello Wold"; 
        for (char c : s.toCharArray()) { 
            System.out.println(c); 
        } 
    } 
}

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/15987.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论