04字符串的获取相关方法

 1 package com.Commonly;
 2 /*
 3 String 当中与获取相关的常用方法有:
 4 
 5 public int length():获取字符串当中含有的字符个数,拿到字符串长度。
 6 public String concat(String str):将当前字符串和参数字符串拼接成为返回值新的字符串。
 7 public char charAt(int index):获取指定索引位置的单个字符。(索引从0开始)
 8 public int indexOf(String str):查找参数字符串在本字符串当中首次出现的索引位置,如果没有返回-1值。
 9 
10  */
11 public class Used04 {
12     public static void main(String[] args) {
13 
14         //获取字符串的长度
15         int length = "cxcdsvfdgghhhhb".length();//"def".length(alt+回车)
16         System.out.println("字符串的长度是:"+length);
17 
18         //拼接字符串
19         String str1 = "Hello";
20         String str2 = "World";
21         String str3 = str1.concat(str2);
22         System.out.println(str1);//Hello,原封不动
23         System.out.println(str2);//World,原封不动
24         System.out.println(str3);//HelloWorld,新的字符串
25         System.out.println("====================");
26 
27         //获取指定索引位置的单个字符
28         char ch = "Hello".charAt(1);
29         System.out.println("在1号索引位置的字符是:"+ch);
30         System.out.println("====================");
31 
32         //查找参数字符串在本来字符串当中出现的第一次索引位置
33         //如果根本没有,返回-1值
34         String original = "HelloWorldHelloWorldHelloWorld";
35         int index = original.indexOf("llo");
36         System.out.println("第1次索引值是:"+index);// 2
37 
38         System.out.println("HelloWorld".indexOf("abc"));// -1
39     }
40 }

 04字符串的获取相关方法

 

上一篇:python面向对象--04终极套娃之“类原来就是个这”


下一篇:【VSCode 自学】04 Windows下VSCode的Python基础配置