String字符串相关操作
.length 字符串长度
.equals 比较字符串
.equalIgnoreCase 比较字符串不区别大小写
.charAt 获取字符串指定下标位置的字符
.contains 判断字符串内是否包含某字符串
.endsWith 判断字符串是不是以某字符串结尾
.startsWith 判断字符串是不是以某字符串开头
.trim 去除字符串前后的空格,不包括字符串内的
.substring 获取字符串的从制定下标开始的字符串 public class TestStr06 {
public static void main(String[] args) {
String s="helloworld";
System.out.println("============1长度===================");
System.out.println("长度:"+s.length()); System.out.println("============2字符串内容的比较===================");
System.out.println(s.equals("Hello"));
System.out.println(s.equalsIgnoreCase("HelloWOrld")); System.out.println("============3指定位置的字符===================");
System.out.println("字符d:"+s.charAt(s.length()-1)); System.out.println("============4判断是否包含===================");
System.out.println(s.contains("hehe")); System.out.println("============5 以XXX结尾===================");
System.out.println("是否以\"ld\"结尾:"+s.endsWith("ld")); System.out.println("============6 以XXX开头===================");
System.out.println("是否以\"he\"开头:"+s.startsWith("he")); System.out.println("============7 过滤2边的空格===================");
// 3个位置都是2个空格
s=" hello world ";
System.out.println("过滤前的:"+s);
System.out.println("过滤前的长度:"+s.length()); System.out.println("过滤后的:"+s.trim());
System.out.println("过滤后的长度:"+s.trim().length()); System.out.println("============8 截取子串===================");
s="helloworld";
//[2,4) 左闭右开 ,[2,3]
System.out.println("截取\"ll\":"+s.substring(2, 4));
//[2,6) [from, to) 截取的字符个数= to-from ,from是起始下标
System.out.println("截取\"llow\":"+s.substring(2, 6));
// from : 从from到最后
System.out.println("截取\"w到最后\":"+s.substring(5));
System.out.println("截取\"w到最后\":"+s.substring(5,s.length()));
}
}
StringBuffer:线程安全的,效率不高,适用于多线程
StringBuilder:线程不安全的,效率高,适用于单线程 ,如果对线程安全没有要求,优先选用StringBuilder
/**
* StringBuffer/StringBuilder: 用法基本相同 ,可变字符序列
* 构造
* @author Administrator
*
*/
public class TestStr05 {
public static void main(String[] args) {
System.out.println("============1==============");
//无参构造 默认长度可以存16个字符
StringBuffer sbu = new StringBuffer();
//append()可以写多个,没有限制
sbu.append("helloworldhelloworld")
.append("a")
.append("b")
.append("c");
System.out.println("sbu="+sbu); System.out.println("============2==============");
// 10:指的初始容量 ,初始的字符个数
sbu = new StringBuffer(10);
sbu.append("helloworldhelloworld")
.append("a")
.append("b")
.append("c");
System.out.println("sbu="+sbu); System.out.println("============3==============");
// StringBuffer(String str)
String s1="today";
sbu = new StringBuffer(s1);
System.out.println("sbu="+sbu);
}
}
.indexOf 获取字符串中指定元素的下标索引
.lastIndexOf 获取字符串中指定元素最后一次出现的下标索引
.replaceAll 替换全部的某元素
.replaceFirst 替换首次出现的某字符
int num = Integer.parseInt(s) 将字符串装换成int型
String result=String.valueOf(num3); 将其他类型转换为字符串
/**
* java.lang.NumberFormatException: For input string: "112" 数据格式异常
* @author Administrator
*
*/
public class TestStr07 {
public static void main(String[] args) {
String s="helloworld";
System.out.println("============1索引位置===================");
//找不到 返回-1
System.out.println("l的下标位置:"+s.indexOf("l")); //
System.out.println("l的最后一次出现下标位置:"+s.lastIndexOf("l")); //
System.out.println("KK的下标位置:"+s.indexOf("KK")); System.out.println("============2 替换===================");
System.out.println("替换掉所有的l:"+s.replaceAll("l", "*")); //he**owor*d
System.out.println("替换首个l:"+s.replaceFirst("l", "*")); //he*loworld System.out.println("替换掉所有的小写字母:"+s.replaceAll("[a-z]", "*")); //**********
System.out.println("替换掉所有的3个小写字母:"+s.replaceAll("[a-z]{3}", "*")); //***d
System.out.println("替换掉所有的3个小写字母:"+s.replaceAll("[a-z]{4}", "*")); //**ld System.out.println("============3字符串转整数===================");
s="123";
int num=Integer.parseInt(s);
System.out.println("字符串转换成int整数:"+num); s="1110";
// s="112";
//2进制的“1110” 转成10进制
num=Integer.parseInt(s,2);
System.out.println("字符串转换成int整数:"+num); s="173";
num=Integer.parseInt(s,8);
//8进制 64+56+3=123
System.out.println("字符串转换成int整数:"+num); s="1e";
num=Integer.parseInt(s,16);
//16进制 16+14=30
System.out.println("字符串转换成int整数:"+num); System.out.println("============3字符串转浮点数===================");
s="123.33";
double num2 = Double.parseDouble(s);
System.out.println("字符串转换成double浮点数:"+num2);
float num3 = Float.parseFloat(s);
System.out.println("字符串转换成float浮点数:"+num3); System.out.println("============4其他类型转换成String字符串===================");
String result=String.valueOf(num3);
System.out.println("float---》String:"+result);
}
}
String字符串相关操作的更多相关文章
- python字符串、字符串处理函数及字符串相关操作
python字符串.字符串处理函数及字符串相关操作 字符串介绍 python字符串表示 Python除处理数字外还可以处理字符串,字符串用单撇号或双撇号包裹: >>> 'spam e ...
- Python_字符串相关操作
1.字符串切片操作: str1='hello word' startIndex=0 #开始索引位置 endIndex=5 #结束索引位置+1 step=2 #步长 print(str1[startIn ...
- Python 字符串相关操作
# 1 * 重复输出字符串 print('hello'*2) # 2 [] ,[:] 通过索引获取字符串中字符,这里和列表的切片操作是相同的,具体内容见列表 print('helloworld'[2: ...
- 初学Python——字符串相关操作
基本字符串操作 Pyhton中字符串的格式化输出在前面已经总结了,接下来介绍一些常用的字符串操作 先定义一个字符变量,以下的操作都以此为例: name=" my name is china ...
- Swift3.0字符串相关操作
以下有关字符串的常用操作都可直接复制到Xcode中进行验证,如发现错误,请在评论区留言指正! 1.字符串的定义 var str1="hello, swift." //字符串变量 相 ...
- 一:redis 的string类型 - 相关操作
*redisclient使用: =============一类:string的方法================ 介绍:string是redis的最简单类型,一个key相应一个value,strin ...
- [ES6系列-05]字符串相关操作更方便
[原创] 码路工人 Coder-Power 大家好,这里是码路工人有力量,我是码路工人,你们是力量. github-pages 博客园cnblogs 今天的内容是,关于 ES6 JavaScript ...
- 4.String字符串类型操作
String类型操作 1.set key value 设置key对应的值为string类型的value 2.mset key1 value1 … keyN valueN 一次设置多个key的值 3. ...
- Python3中的字符串相关操作
Python3的字符串操作相关函数详解 字符串内建函数 1. capitalize() 将字符串中的第一个字符转换成大写,其他字母变成小写.例: >>> "hello Wo ...
随机推荐
- js添加触摸时间,禁止页面缩放
<meta name="viewport" content="target-densitydpi=320,width=640,user-scalable=no&qu ...
- Git学习笔记--配置(二)
由之前文章,总结得出Git的特点: 最优的存储能力: 非凡性能: 开源的: 管理成本低: 很容易做备份: 支持离线操作: 很容易定制工作流程: Git is a free and open sourc ...
- Greenplum 6 新功能 在线扩容工具GPExpand (转载)
Gpexpand是Greenplum数据库的扩容工具,可以为集群增加新节点从而可以存储更多的数据,提供更高的计算能力.Greenplum 5及之前,集群扩容需要停机增加新节点,然后对表数据做重分布.因 ...
- UFUN函数 UF_ATTR函数(UF_ATTR_assign ,UF_ATTR_read_value )
UF_initialize(); tag_t ; ]="零件名称"; UF_ATTR_value_t value; value.type=UF_ATTR_string; value ...
- php web开发——文件的上传和下载
PHP用超级全局变量数组$_FILES来记录文件上传相关信息的. 1.file_uploads=on/off 是否允许通过http方式上传文件 2.max_execution_time=30 允许脚本 ...
- linux patch 简单学习
使用patch 我们可以方便的进行软件补丁包处理,以下演示一个简单的c 项目补丁处理 原代码 app.c #include <stdio.h> int main(){ printf(&qu ...
- 使用chrome浏览器调试移动端网页(非模拟访问)
1. 使用数据线连接手机与电脑 2. 打开手机调试模式 参考:http://jingyan.baidu.com/article/f79b7cb35ada4d9145023e63.html 本人使用的m ...
- ssh修改默认远程端口
---------------------centos6-----------------1.查看系统版本cat /etc/redhot-releose 2.编辑sshd配置,修改默认的端口vim / ...
- 剑指offer:两个链表的第一个公共结点
题目描述: 输入两个链表,找出它们的第一个公共结点. 解题思路: 这道题一开始的题意不太理解,这里的公共结点,实际上指结点指相同,在题目不存在结点值相同的不同结点. 1. 最直接的思路是对链表一的每个 ...
- Java基础 三目运算符 用if-else对其进行解释
JDK :OpenJDK-11 OS :CentOS 7.6.1810 IDE :Eclipse 2019‑03 typesetting :Markdown code ...