class stringDemo
{
public static void main(String[] args)
{
String str="abcdaef";
sop(str.length());
sop(str.charAt(3));
sop(str.indexOf('a',5));
sop( str.isEmpty());
sop(str.endsWith("f"));
}
public static void sop(Object obj)
{
System.out.println(obj);
}
}
|
|