String的应用

原文:https://blog.csdn.net/lcg_18284090173/article/details/79335553

String类适用于描述字符串事物。
那么它就提供了多个方法对字符串进行操作。


常见的操作
"abcd"


1,获取。
1.1 字符串中的包含的字符数,也就是字符串的长度。
int length():获取长度。
1.2 根据位置获取位置上某个字符。
char charAt(int index):
1.3 根据字符获取该字符在字符串中位置。
int indexOf(int ch):返回的是ch在字符串中第一次出现的位置,也就是ch位置处后面的所有字符。
int indexOf(int ch, int fromIndex) :从fromIndex指定位置开始,获取ch在字符串中出现的位置,
也就是ch和fromIndex之间的字符,包括ch处,不包括fromIndex处。


int indexOf(String str):返回的是str在字符串中第一次出现的位置,也就是str位置处后面的所有字符。
int indexOf(String str, int fromIndex) :从fromIndex指定位置开始,获取str在字符串中出现的位置
也就是str和fromIndex之间的字符,包括str处,不包括fromIndex处。

 

int lastIndexOf(int ch) :返回某字符最后一次出现的位置。

 
  1. class Demo1

  2. {

  3. public static void main(String[] args)

  4. {

  5. String str = "abfcdefg";

  6. int index = str.charAt(2);

  7. System.out.println(str.lastIndexOf(index));

  8. }

  9. }

int lastIndexOf(int ch,int fromIndex), int lastIndexOf(String str), int lastIndexOf(String str,int fromIndex)
与以上方法类似。
2,判断。
2.1 字符串中是否包含某一个子串。
boolean contains(String str):
特殊之处:indexOf(String str):可以索引str第一次出现位置,如果返回-1.表示该str不在字符串中存在。
所以,也可以用于对指定判断是否包含。
if(str.indexOf("aa")!=-1)


而且该方法即可以判断,有可以获取出现的位置。


2.2 字符中是否有内容。
boolean isEmpty(): 原理就是判断长度是否为0.

 
  1.                 class Demo1

  2. {

  3. public static void main(String[] args)

  4. {

  5. String str = "abc";

  6. //int index = str.charAt(2);

  7. System.out.println(str.isEmpty());

  8. }

  9. }



2.3 字符串是否是以指定内容开头。
boolean startsWith(str);
2.4 字符串是否是以指定内容结尾。
boolean endsWith(str);
2.5 判断字符串内容是否相同。复写了Object类中的equals方法。
boolean equals(str);

 
  1.                 class Demo1

  2. {

  3. public static void main(String[] args)

  4. {

  5. String str = "abc";

  6. //int index = str.charAt(2);

  7. System.out.println(str.equals("abc"));

  8. }

  9. }



2.6 判断内容是否相同,并忽略大小写。
boolean equalsIgnoreCase();

3,转换。
3.1 将字符数组转成字符串。
构造函数:
String(char[] chs)

 
  1.                 class Demo1

  2. {

  3. public static void main(String[] args)

  4. {

  5. char[] chs = {'a','b','c'};

  6. String str = new String(chs);

  7. System.out.println(str);

  8. }

  9. }



String(char[] chs,int offset,int count):将字符数组中的一部分转成字符串。

 
  1.                 class Demo1

  2. {

  3. public static void main(String[] args)

  4. {

  5. char[] chs = {'a','b','c'};

  6. String str = new String(chs);

  7. System.out.println(str);

  8. }

  9. }





静态方法:
static String copyValueOf(char[]);
static String copyValueOf(char[] data, int offset, int count) 


static String valueOf(char[]):



3.2 将字符串转成字符数组。**
char[] toCharArray():


3.3 将字节数组转成字符串。
String(byte[])
String(byte[],offset,count):将字节数组中的一部分转成字符串。


3.4 将字符串转成字节数组。
byte[]  getBytes():
3.5 将基本数据类型转成字符串。
static String valueOf(int)
static String valueOf(double)


//3+"";//String.valueOf(3);


特殊:字符串和字节数组在转换过程中,是可以指定编码表的。


4,替换
String replace(char oldchar,char newchar);


5,切割
String split(String regex);


6,子串。获取字符串中的一部分。
String substring(begin);
String substring(begin,end);


7,转换,去除空格,比较。
7.1 将字符串转成大写或则小写。
String toUpperCase();
String toLowerCase();


7.2 将字符串两端的多个空格去除。
String trim();


7.3 对两个字符串进行自然顺序的比较。
int compareTo(string);

猜你喜欢

转载自blog.csdn.net/qq_35807964/article/details/81517504
今日推荐