码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的获取相关方法

时间:2020-10-18 16:58:21      阅读:24      评论:0      收藏:0      [点我收藏+]

标签:ati   evb   单个字符   static   har   rgba   方法   相关   get   

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

 

字符串的获取相关方法

标签:ati   evb   单个字符   static   har   rgba   方法   相关   get   

原文地址:https://www.cnblogs.com/zrwx/p/13834186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!