package cn.ly.Day.seven.fifteen;
/*
* String当中与获取相关的常用方法
*
* public int length(),获取字符串当中含有的字符个数,拿到字符长度
* public String concat(String str),将当前字符串和参数字符串拼接成为返回值新的字符串
* public char charAt(int index),获取指定索引位置的单个字符。(索引从0开始)
* public int indexOf(String str),查找参数字符串在字符串当中首次出现的索引位置,如果没有返回-1值
* */
public class Dem001StringGet {
public static void main(String[] args) {
int length = "qwihdhhdsvch".length();
System.out.println("字符串的长度为:"+length);
//拼接字符串
String str1="pig";
String str2="pork";
String str3=str1.concat(str2);
System.out.println(str1);//pig
System.out.println(str2);//pork
System.out.println(str3);//pigpork
//获取指定索引位置的单个字符
char ch = "ymjyy".charAt(2);
System.out.println("在2号索引位置的字符是:"+ch);//在2号索引位置的字符是:j
//查找参数字符串在本来字符串当中出现的第一次索引位置
//如果位置根本没有,返回-1值
String original="helloworld";
int index = original.indexOf("llo");
System.out.println("第一次索引值是:"+index);//第一次索引值是:2
System.out.println("helloworld".indexOf("abc"));//-1
}
}
package cn.ly.Day.seven.fifteen;
/*
* 字符串截取方法
* public String
*
* */
public class Demo02Substring {
public static void main(String[] args) {
String str1="helloworld";
String str2=str1.substring(5);
System.out.println(str1);//helloworld
System.out.println(str2);//world
System.out.println("===========");
String str3=str1.substring(4,7);
System.out.println(str3);//owo
//下面这种写法,字符串的内容仍然是没有改变的
//下面有两个字符串:"hello","java"
//strA当中保存的是地址值。
//本来的地址值是hello的0x666
//后来地址值变成了java的0x999
String strA="hello";
System.out.println(strA);//hello
strA="java";
System.out.println(strA);//java
}
}
package cn.ly.Day.seven.fifteen;
/*
* 分割字符串的方法:
* public String[] split(String regex),按照参数的规则,将字符串切分成为若干部分。
* 注意事项
* 1.split方法的参数其实是一个“正则表达式”。
* 2.如果按照英文句点“.”进行切分,必须写“//.”
*
*
* */
public class Demo04StringSplit {
public static void main(String[] args) {
String str1="aa,bb,cc";
String[] array=str1.split(",");
for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}
System.out.println("==========");
String str2="aa.bb.cc";
String[] array1=str2.split("\\.");//此处注意正则表达式
for (int i = 0; i < array1.length; i++) {
System.out.println(array1[i]);
}
System.out.println("==========");
String str3="xx.yy.zz";
String[] array2=str3.split(".");
for (int i = 0; i < array2.length; i++) {
System.out.println(array2[i]);
}
}
}
`