package com.liaojianya.chapter2;
public class Exercise16_2
{
public static void main(String[] args)
{
String name = "My name is Networkcrazy";
char[] data = name.toCharArray();
System.out.println("length of string is : " + data.length);
System.out.println("the first character of string is : " + name.charAt(0));
System.out.println("the last character of string is : " + name.charAt(data.length - 1));
System.out.println("the first word of string is : " + name.substring(0, 2));
String data1[] = name.split(" ");
System.out.println("the first word of string is : " + data1[0]);
System.out.println("the index of \" crazy \" is " + name.indexOf("crazy"));
}
}
运行结果:
<pre name="code" class="java">length of string is : 23
the first character of string is : M
the last character of string is : y
the first word of string is : My
the first word of string is : My
the index of " crazy " is 18