String类使用方法

1.1、字节与字符串相互转换

    |-字节-->String:public String(byte[]  bytes)

       |-String-->字节: public byte[] getBytes(String charsetName)

范例:字节-->字符串


public class Demo1 {

public static void main(String[] args) {

String str="hello world";

byte []b=str.getBytes();

byte []c={66,67,68,69,70,71};      //定义一个byte字节的数组c

String str1=new String(b);         //将b数组转换为字符串型

String str2=new String(c);         //将c数组转换为字符串型

System.out.println(str1);

System.out.println(str2);

}

}

1.2、判断是否以某字符开头,或结尾

|-以某字符结尾:public boolean endsWith(String suffix)

|-以某字符开头:public boolean startsWith(String prefix)

范例:


public class Demo2 {

public static void main(String[] args) {

String str="Hello world";

System.out.println(str.startsWith("h"));      //如果是以h开头,则返回true

System.out.println(str.endsWith("d"));

}

}

 

1.3、替换操作

|-全部替换public String replaceAll(String regex, String replacement)

public class Demo2 {

public static void main(String[] args) {

String str="Hello world";

System.out.println(str.replaceAll("o", "x"));    //将字符串中的o代替为x

}

}


1.4、替换操作

|-字符串截取public String substring(int beginIndex)


public class Demo2 {

public static void main(String[] args) {

String str="Hello world";

String str1=str.substring(0, 5);       //从0下标开始截取5个字符

System.out.println(str1);

}

}

1.5、拆分操作

|-字符串拆分:public String[] split(String regex)


public class Demo2 {

public static void main(String[] args) {

String str="Hello world";

String[] str1=str.split(" ");      //将字符串按“ ”(空格)拆分为字符串数组

for (String string : str1) {

System.out.print(string+",");   //打印拆分后的字符串数组

}

}

}

1.6、查找操作

      |-public int indexOf(int ch, int fromIndex)、public int indexOf(int ch)
       |-此方法返回int整数型,如果查找到了,则返回位置,没有查找到则返回-1;

public class Demo2 {

public static void main(String[] args) {

String str="Hello world";

System.out.println(str.indexOf("l"));     //查找l的位置,如果string中有“l“,则返回其在string中的位置;没有,则返回-1

}

}


1.7、字符串的其他操作

去掉左右空格:public String trim()

取得字符串长度:public int length()

小写转大写:public String toUpperCase(Locale locale)

大写转小写:public String toLowerCase(Locale locale)

操作练习

         判断邮箱地址是否正确;(是否有“@”及“.”符号)


public class Demo3 {

public static void main(String[] args) {

String str="[email protected]";

if(str.indexOf("@") == -1 && str.indexOf(".")==-1){

System.out.println("你输入的邮箱不合法");

}else{

System.out.println("合法邮箱");

}

}

}

时间: 2024-10-11 03:56:47

String类使用方法的相关文章

C++中string类的方法

C++ string类的方法 具体每个方法怎么使用,可以参考相应的链接. 总的链接为http://www.cplusplus.com/reference/string/string/(C++参考文档) string 函数列表函数名      描述begin      得到指向字符串开头的Iteratorend      得到指向字符串结尾的Iteratorrbegin      得到指向反向字符串开头的Iteratorrend      得到指向反向字符串结尾的Iteratorsize     

《java入门第一季》之类(String类常见方法小叙)

String类下面的构造方法和一些常见的方法: /* * 字符串:就是由多个字符组成的一串数据.也可以看成是一个字符数组. * 通过查看API,可以知道 * A:字符串字面值"abc"也可以看成是一个字符串对象. * B:字符串是常量,一旦被赋值,就不能被改变. * * 构造方法: * public String():空构造 * public String(byte[] bytes):把字节数组转成字符串 * public String(byte[] bytes,int index,i

String类replaceAll方法正则替换深入分析

作者网址: https://my.oschina.net/shipley/blog/98973 背景:      前几天有人发了一个关于下面问题的贴,对这个有点好奇,故花时间做了点研究.        对单个反斜杠字符串替换成双斜杠的Java实现如下:    String s = "\\";    方法一:String sr1 = s.replaceAll("\\\\", "\\\\\\\\");    方法二:String sr1 = s.re

【转载】Java中String类的方法及说明

转载自:http://www.cnblogs.com/YSO1983/archive/2009/12/07/1618564.html String : 字符串类型 一.构造函数     String(byte[ ] bytes):通过byte数组构造字符串对象.     String(char[ ] value):通过char数组构造字符串对象.     String(Sting original):构造一个original的副本.即:拷贝一个original.     String(Strin

java中string类的方法和加密程序

String.equals()方法: 是对String对象所封装的字符串内容进行比较,也就是说,如果两个String对象所封装的字符串内容相同(包括大小写相同),则equals()方法将返回true. String类的length(),char(),getChar(),replace(),toUpperCase(),tolowerCase(),trim(),tocharArray()使用说明 Length()求字符串长度 Char()获取给定的index处的字符 getChar()字符转换成数组

Object类和String类equals方法有什么区别?

相信很多学习过Java的同学都知道,在比较两个String对象的内容是否相同时是使用equals方法的 如:String str1=new String("A"); String str2=new String("B"); String str3=new String("B"); boolean result1= str1.equals(str2); boolean result2= str2.equals(str3); System.out.p

深入分析Java的String类的方法与特点

字符串是任何编程语言都必须支持的变量类型,有些编程语言是直接提供了原生的变量类型,有些编程语言则使用语法特性以 SDK 的形式提供支持.在Java编程平台中,对字符串的支持使用了后者的形式,就是通过在 JDK中提供一个名为String的类,对应字符串这个变量类型. 源码分析 既然JDK中的String类对应了字符串变量类型,为了熟练地掌握Java中字符串相关的技能,我们必须深入地分析和研究一下这个类.编码界有一句名言叫做 "源码面前,了无秘密",因此,我们第一步就是来看看String类

Java中String类的方法及说明

String : 字符串类型 一.构造函数     String(byte[ ] bytes):通过byte数组构造字符串对象.     String(char[ ] value):通过char数组构造字符串对象.     String(Sting original):构造一个original的副本.即:拷贝一个original.     String(StringBuffer buffer):通过StringBuffer数组构造字符串对象.  例如:      byte[] b = {'a',

C#中字符串String类及方法的使用(一)

一.实例化String对象 1.最常用的方法是直接将字符串分配到String变量中. 注意1:转义字符 \ ,字符串内含有引号"".反斜杠\或换行等都需要使用“\”输出. 注意2:在字符串前面使用@符号,指明转义序列不被处理. 1 string string1 = "This is a string created by assignment."; 2 Console.WriteLine(string1); 3 string string2a = "The

String类equals()方法详解

下面我们先看一段代码: 这段代码输出的结果为: ture true -------------- false 咋看之下貌似Object类比较特别,那么我们看一下Object下的equals()方法的源代码 Object下的queals()方法十分简单,就是单纯的判断这两个引用是不是指向同一个对象,是的话返回true,不是的话返回false. 可是把这个方法应用在上面代码的String对象身上明显不对,那么String类里面必定重写了equals()方法,来看一下它的源代码: 重这个方法的源代码可