package cn.yyhl.day10;
/*
Sting当中与获取相关的常用方法有:
public int length():获取字符串当中含有的字符串个数,拿到字符串的长度。
public String concat(String str):将当前字符串和参数字符串拼接成为返回值新的字符串。
pbulic char charAt(int index):获取指定索引位置的单个字符。(索引值从0开始)。
public int indexOf(String str):查找参数字符串在本字符当中首次出现的索引位置,如果没有返回-1值。
*/
public class String04Get {
public static void main(String[] args) {
//获取字符串的长度
String str = "jlasjogmlndovjoejdslajdlawdlwjdwljdaldjlw";
System.out.println(str.length());//41
//拼接字符串
String str1 = "hello";
String str2 = "world";
String str3 = str1.concat(str2);
System.out.println(str1);//hello
System.out.println(str2);// world
System.out.println(str3);//helloworld 新的字符串
System.out.println("==================");
//获取指定索引位置的单个字符
char ch = "hello".charAt(1);
System.out.println("hello字符串当中索引值1的字符是:" + ch);
System.out.println("==================");
//查找参数字符串在本来字符串当中出现的第一次索引位置
//如果没有返回-1值
String original = "helloworld";
System.out.println(original.indexOf("llo"));//2
System.out.println(original.indexOf("abc")); //-1
}
}