字符串处理时任何编程语言都绕不开的,且非常重要,下边直接上例子,验证其方法。
package com.test.string;public class Test { public static void main(String[] args) throws Exception { // TODO Auto-generated method stub String s = "可以证明,字符串操作时计算机程序设计中最常见的行为。"; //字符串中字符个数 System.out.println(s.length()); //参数时一个Int索引,取出索引指定位置的字符 System.out.println(s.charAt(0)); System.out.println(s.charAt(2)); /* s.getChars(int start,int end,char c[],int offset); * 该方法的作用是将当前字符串从start到end-1位置上的字符复制到字符数组c中,并从c的offset处开始存放 */ char c [] = {'1','1','1','1','1','1','1','1','1','1'}; s.getChars(0, 4, c, 3); for(int i = 0;i