Java字符串笔记(一)
已经有一个多月没有动Java了,今天开始学习了,先复习一下Java的字符串吧
字符串声明和赋值
String name = new String("京唐C"); 或者 String name = "京唐C"; 或者 String name=""; name = "京唐C";
获取字符串长度
使用length()方法
int lenth = name.length();
字符串连接
使用concat()方法
String user="觅音博客";
System.out.println(name.concat(user));
直接使用字符串字面量调用concat()方法
String string = "京唐C".concat("觅音博客");
或者使用“+”连接
System.out.println(name+user);
使用“+”连接时,如果存在各种数据参与运算,按照运算符从左到右进行运算,Java会根据“+”运算符两边的操作数据类型决定是进行算术运算还是字符创连接运算
第一行代码,先计算1.1+1=2.1,之后连接字符,结果为2.1京唐C
第二行代码,先连接字符京唐C+1.1,之后再连接字符1,结果为京唐C1.11
System.out.println(1.1+1+"京唐C");
System.out.println("京唐C"+1.1+1);
字符串比较
使用equals()方法,区分大小写
System.out.println("京唐C".equals("京唐c"));
使用equalsIgnoreCase()方法,忽略大小写
System.out.println("京唐C".equalsIgnoreCase("京唐c"));
字符串截取,使用substring()方法
String blog = "京唐C觅音博客"; String sub1 = string.substring(2); String sub2 = blog.substring(2, 4); System.out.println(sub1); System.out.println(sub2);
字符串查找,使用indexOf()方法
String string2 = "I love Java"; String string3 = "o"; int serindex1 = string2.indexOf(string3); //从String2开始位置查找string3字符串 int serindex2 = string2.indexOf(string3,5); //从String2字符串第二个位置查找string3字符串 System.out.println(serindex1); //从0开始 System.out.println(serindex2); //查询不到显示-1
字符串替换,replace(oldChar, newChar)
char oldChar = 'I'; char newChar = 'U'; string2.replace(oldChar, newChar); System.out.print(string2.replace(oldChar, newChar));
字符串转换字符数组
String hellostring = "hello"; char[] helloArray = hellostring.toCharArray();