Java教程

04字符串的获取相关方法

本文主要是介绍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字符串的获取相关方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!