黑马程序员技术交流社区

标题: 字符转换 [打印本页]

作者: yinping    时间: 2015-5-17 23:06
标题: 字符转换
public class lianxi {
        public static void main(String[] args) {
       //将字符串转化字符数组
                /*String str = "abcde";
                char[] ch = str.toCharArray();
                System.out.print("[");
                for (int x = 0; x < ch.length; x++) {
                        if (x < ch.length - 1)
                                System.out.print(ch[x] + ",");
                        else
                        System.out.print(ch[x]+"]");*/

                System.out.println("..................");
                //将字符串中的字符替换
                String s=" abcde ";
                String s2=s.replace("cd", "fe");
                System.out.println(s2);
                String s3=s.trim();
                System.out.println(s3);
                }
        }

作者: Sou男人    时间: 2015-5-17 23:24
恩恩不错额。
作者: 1017161726    时间: 2015-5-17 23:28
字符串s替换的时候,s也会跟着变化,这是要注意的。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2