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="abc@134.com"; if(str.indexOf("@") == -1 && str.indexOf(".")==-1){ System.out.println("你输入的邮箱不合法"); }else{ System.out.println("合法邮箱"); } } } |
String类使用方法的更多相关文章
- 《java入门第一季》之类(String类常见方法小叙)
String类下面的构造方法和一些常见的方法: /* * 字符串:就是由多个字符组成的一串数据.也可以看成是一个字符数组. * 通过查看API,可以知道 * A:字符串字面值"abc&quo ...
- C++中string类的方法
C++ string类的方法 具体每个方法怎么使用,可以参考相应的链接. 总的链接为http://www.cplusplus.com/reference/string/string/(C++参考文档) ...
- string类find_first_not_of ()方法
string类find_first_not_of ()方法 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://xfqxj.blog. ...
- String类replaceAll方法正则替换深入分析
作者网址: https://my.oschina.net/shipley/blog/98973 背景: 前几天有人发了一个关于下面问题的贴,对这个有点好奇,故花时间做了点研究. ...
- Java中String类的方法及说明
String : 字符串类型 一. String sc_sub = new String(c,3,2); // String sb_copy = new String(sb) ...
- JDK6与JDK7中String类subString()方法的区别
1.subString()方法的作用 subString(int beginIndex, int endIndex)方法的返回的是以beginIndex开始到 endIndex-1结束的某个调用字符串 ...
- 关于Integer类中parseInt()和valueOf()方法的区别以及int和String类性的转换.以及String类valueOf()方法
Integer类中的. 关于parseInt()方法的API文档. 返回的是int类型的 关于valueOf()方法的API文档 返回的是Integer类型的. 关于intValue()方法的API ...
- 深入分析Java的String类的方法与特点
字符串是任何编程语言都必须支持的变量类型,有些编程语言是直接提供了原生的变量类型,有些编程语言则使用语法特性以 SDK 的形式提供支持.在Java编程平台中,对字符串的支持使用了后者的形式,就是通过在 ...
- java String类 trim() 方法源码分析
public String trim() { int arg0 = this.value.length; //得到此字符串的长度 int arg1 = 0; //声 ...
- 【转载】Java中String类的方法及说明
转载自:http://www.cnblogs.com/YSO1983/archive/2009/12/07/1618564.html String : 字符串类型 一. String sc_ ...
随机推荐
- 如何隐藏Cognos Viewer
做BI项目很多时候需要跟Portal做集成,可以将整个BI Portal放到企业门户或者只是存放一些固定的报表.由于Cognos默认运行会带出Cognos Viewer,这样就跟门户不太协调. 有几种 ...
- 本地数据jqGrid分页
var mydata=''; $(function() { var str = ''; str += "<span>共<span id='p_total'></ ...
- ColorMatrixFilter色彩矩阵滤镜(as3)
matrix是一个长度为4*5=20的数组,其构成如下所示: R ,G, B, A, offset [1, 0, 0, 0, 0]); // red [0, 1, 0, 0, 0 ...
- iOS 开发中中 textView 作为子控件点击输入文本,然后退出文本的方式
方式1. 使用当双击输入的时候弹出键盘同时,使用手势和通知监听键盘的方法实现 代码如下: 1. 监听键盘通知 [[NSNotificationCenter defaultCenter] addObse ...
- WebADI应用到Office 2016 64-bit
升级后的用户环境: Windows 2016 bit Office 2016 64 bit IE 11 64 bit 功能定义 功能:CUX_LINE_IMP_ADI 类型:SSWA servlet ...
- shell 读取文件
#!/bin/bash content=`cat test.txt` echo "begin" for i in $content do echo $i done 读取前10行 t ...
- centos tomcat 安装
安装说明 安装环境:CentOS-6.3 安装方式:源码安装 软件:apache-tomcat-7.0.29.tar.gz 下载地址:http://tomcat.apache.org/downloa ...
- JTree事件
package com.wf; import javax.swing.*; import javax.swing.event.TreeSelectionEvent; import javax.swin ...
- Linux 分区挂载方案
/boot 1G swap 2G(看内存决定) / 10-15G /home 5G
- 鼠标形状css样式
鼠标形状css样式 <!DOCTYPE html> <html lang="en"> <head> <meta charset=" ...