[求助]字符串问题
怎样从一个字符串中提取一部分特定字符串怎样判断一个字符串中是否含有特定字符串
class num
{
public static void main(String args[])
{
String day=new String("String");
char ch=day.charAt(3);
int index1=day.indexOf('n');
int index2=day.indexOf('z',2);
int index3=day.indexOf("S");
System.out.println("ch="+ch);
System.out.println("index1="+index1);
System.out.println("index2="+index2);
System.out.println("index3="+index3);
System.out.println("大写"+day.toUpperCase());
System.out.println("小写"+day.toLowerCase());
int num=day.length();
System.out.println("字符串长度为"+num);
}
}
charAt 从一个字符串中截取一个字符
indexOf 返回字符串中某个特定字符或子字符串首次出现的索引
toUpperCase 将小写改为大写
toLowerCase 将大写改为小写
[此贴子已经被作者于2006-6-27 23:45:14编辑过]