Java字符串的应用
字符串的简单应用
public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1 + s2;
int size= s.length();
System.out.println(size);
}
}//输出字符串长度 /*public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1 + " " + s2;
System.out.println(s);
}
}//连接多个字符串*/
/*public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1 + s2;
int size= s.indexOf("e"); //在这里可以修改局部变量 "e" 可以改变成其他的浮点
System.out.println(size);
}
}//字符串的查找
*/
/*public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1 + s2;
int size= s.lastIndexOf(""); //""中间没有空格表示空字符串
System.out.println("空字符在字符串中的索引位置"+size);
System.out.println("字符串的长度是" + s.length());
}
}//查找空字符串的位置并输出长度*/
连接其他数据类型(Link型)
public class Link {
public static void main(String args[]) {
int booktime = 4;
float practicetime = 2.5f;
System.out.println( "我每天花费 " + booktime + "小时看书;" + practicetime + "小时练习");
}
}
索引位置x的对应位置的字母是什么
public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1 + " " + s2;
char j =s.charAt(6);
System.out.println("索引位置6所对的字母是"+j);
}
}
获取字符串
public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = s1+s2;
System.out.println(s);
String y=s.substring(0, 3);
System.out.println(y);
}
}
去除空格
public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = " "+s1+" "+s2+" ";
System.out.println("原来的字符串长度为"+s.length());
System.out.println("去掉空格后的字符串长度为"+s.trim().length());
}
}
字符串的替换
public class join {
public static void main (String args[]){
String s1 = new String ("hello");
String s2 = new String ("word");
String s = " "+s1+" "+s2+" ";
System.out.println(s);
System.out.println("替换之后的"+s.replace("word", "java"));
}
}
替换之后是hello java
判断字符串的开始和结尾
public class startorend {
public static void main(String args[]) {
String num1="12345678";
String num2="23456789";
boolean b=num1.startsWith("12");
boolean c=num1.endsWith("89");
boolean d=num2.startsWith("12");
boolean e=num2.endsWith("89");
System.out.println("num1输出的是否以12开始"+b);
System.out.println("num1输出的是否以89结束"+c);
System.out.println("num2输出的是否以12开始"+d);
System.out.println("num1输出的是否以89结束"+e);
}
public startorend() {
// TODO 自动生成的构造函数存根
} }
用equal 和equalignore判断字符串是否相等
public class Opinion {
public static void main(String args[]) {
String a=new String("abc");
String b=new String ("ABC");
String c=new String ("abc");
boolean x=a.equals(b);
boolean y=a.equalsIgnoreCase(b);
System.out.println(x);
System.out.println(y);
}
public Opinion() {
// TODO 自动生成的构造函数存根
} }
按照字典顺序比较两个字符串
public class Opinion{
public static void main(String args[]) {
String s1="a";
String s2="b";
String s3="c";
System.out.println(s1 +" "+"comepareTo"+" "+s2+s1.compareTo(s2));
System.out.println(s1+" "+"comepareTo"+" "+s3+s1.compareTo(s3)); }
}
字符串字母大小写转换
public class Opinion{
public static void main(String args[]) {
String s1="abc";
String s2="LZB";
String s=s1+s2;
String news1=s.toLowerCase();
String news2=s.toUpperCase();
System.out.println(s);
System.out.println(news1+news2);
}
}
日期和时间字符串格式化
import java.util.Date;
@SuppressWarnings("unused")
public class date {
public static void main(String[] args) {
Date days=new Date();//创建DATE的类day
String year =String.format("%tY", days);
String month=String.format("%tB", days);
String day=String.format("%td", days);
System.out.println("今年是"+year+"年");
System.out.println("现在是"+month);
System.out.println("今天是"+day+"号");
}
public date() {
// TODO 自动生成的构造函数存根
} }
时间格式化
import java.util.Date;
public class date {
public static void main(String[] args) {
Date time=new Date();//创建DATE的类time
String hour =String.format("%tH", time);
String minute=String.format("%tM", time);
String second=String.format("%tS", time);
System.out.println("现在的时间是"+hour+"时"+minute+"分"+second+"秒");
}
public date() {
// TODO 自动生成的构造函数存根
} }
import java.util.Date;
public class date {
public static void main(String[] args) {
Date days=new Date();//创建DATE的类time
String day =String.format("%tc", days);
String form=String.format("%tF", days);
System.out.println("全部的时间信息是"+day);
System.out.println("年-月-日格式"+form);
}
public date() {
// TODO 自动生成的构造函数存根
} }
实验结果:
全部的时间信息是星期二 二月 04 09:54:45 CST 2020
年-月-日格式2020-02-04 常规类型格式化
public class Opinion{
public static void main(String args[]) {
String s1=String.format("%d", 400/2);
String s2=String.format("%b", 2>7);
String s=String.format("%x", 100);
System.out.println("2>7"+s2);
System.out.println("400的一半是"+s1);
System.out.println("100的十六进制数是"+s);
}
}
正则表达式判断邮箱是否合法
public class Opinion{
public static void main(String args[]) {
//定义正确的qq邮箱格式
String regex="\\w+@\\w+(\\.\\w{2,3})";//"\\w+@\\w+(\\.\\w{2,3})*\\.\\w{2,3}}";
String s1="aaaa@.com";
String s2="aaaa.23a";
String s3="2358903351@qq.com";
if (s1.matches(regex)) {
System.out.println(s1+"是合法的");
}
if(s2.matches(regex)) {
System.out.println(s2+"是合法的");
}
if(s3.matches(regex)) {
System.out.println(s3+"是合法的");
}
}
}
小编第一次写这么多,图片那个胖胖的手指!
不要注意!
不要注意!
不要注意!
如果看到了。。。。。我摊牌了没错就是我!
如果对初学者有帮助,别忘了快夸夸我呀!!!
Java字符串的应用的更多相关文章
- Java 字符串格式化详解
Java 字符串格式化详解 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 文中如有纰漏,欢迎大家留言指出. 在 Java 的 String 类中,可以使用 format() 方法 ...
- (转)Java字符串
转自:http://blog.sina.com.cn/s/blog_899678b90101brz0.html 创建字符串有两种方式:两种内存区域(字符串池,堆)1," " 引号创 ...
- Java字符串split函数的注意事项
Java字符串的split方法可以分割字符串,但和其他语言不太一样,split方法的参数不是单个字符,而是正则表达式,如果输入了竖线(|)这样的字符作为分割字符串,会出现意想不到的结果, 如, Str ...
- 关于java字符串编译优化问题
情景一:不好的字符串拼接习惯 起因是这样的:一个大牛在写了一篇关于java字符串优化问题的讲解,他提到:不要使用strObj+otherValue的方法将otherValue转换为字符串形式,因 ...
- Java字符串排列算法
Java字符串排列算法 题目:现有ABCDE 5个球 构成的排列组合 可重复抽取 最多取到16个 共有多少种组合方式? 比如:取1个球可以构成的组合有 A B C D E 共5种,取2个球可以构成的组 ...
- Java字符串转换
public class StringConvertToInt{ public static void main(String[] args) { String a ="12a34bW()5 ...
- Java字符串null相加
Java字符串null相加 最近和同事讨论了下面的一段代码: String a = null; a += a; System.out.println(a); 运行结果: nullnull 本着学习的态 ...
- JAVA字符串格式化String.format()的使用
JAVA字符串格式化-String.format()的使用常规类型的格式化 String类的format()方法用于创建格式化的字符串以及连接多个字符串对象.熟悉C语言的同学应该记得C语言的sprin ...
- Java字符串的10大热点问题,你都懂吗?
转自 威哥干JAVA http://www.codingke.com 下面我为大家总结了10条Java开发者经常会提的关于Java字符串的问题,如果你也是Java初学者,仔细看看吧: 1.如何比较字符 ...
- java 字符串为空问题
java 字符串为空问题 String testStr = null; System.out.println(testStr); if (testStr == null) { System.out.p ...
随机推荐
- AspNetCore3.1_Secutiry源码解析_2_Authentication_核心对象
系列文章目录 AspNetCore3.1_Secutiry源码解析_1_目录 AspNetCore3.1_Secutiry源码解析_2_Authentication_核心项目 AspNetCore3. ...
- 【Weiss】【第03章】练习3.17:懒惰删除
[练习3.17] 不同于我们已经给出的删除方法,另一种是使用懒惰删除的方法. 为了删除一个元素,我们只标记上该元素被删除的信息(使用一个附加的位域). 表中被删除和非被删除的元素个数作为数据结构的一部 ...
- pycharm 更换pip镜像源为国内,解决下载慢的问题
参考链接:https://www.cnblogs.com/hkgov/p/7799078.html 官方源下载速度太慢,换成国内源会很快. 推荐清华的源:https://pypi.tuna.tsing ...
- Spring bean配置 入门
Spring 的入门案例:(IOC) IOC 的底层实现原理(结构图2.01) 图:2.01 IOC:Inversion of Control 控制反转,指的是对象的创建权反转(交给)给Spring ...
- cmdb采集数据的版本
在局部配置文件中配置MODE=' agent',或者MODE=‘ssh’,或者MODE=‘’saltstack ', 实现只需要修改这个配置,就会使用对应的方案进行采集数据 第一种版本: 启动文件中 ...
- 第九周Java实验作业
实验九 异常.断言与日志 实验时间 2018-10-25 1.实验目的与要求 (1) 掌握java异常处理技术: Java的异常处理机制可以控制程序从错误产生的位置转移到能够进行错误处理的位置. Ja ...
- Django 模型笔记
关于模型: 1:一个模型类对应一个表,模型类中的属性对应表中的一个字段 2:字段类型(数据库支持的类型) 模型属性 字符串 1:CharField(Maxlength=长度) models.CharF ...
- Hive数据倾斜的原因及主要解决方法
数据倾斜产生的原因 数据倾斜的原因很大部分是join倾斜和聚合倾斜两大类 Hive倾斜之group by聚合倾斜 原因: 分组的维度过少,每个维度的值过多,导致处理某值的reduce耗时很久: 对一些 ...
- eNSP上NAT的配置
NAT介绍: 早在20世纪90年代初,有关RFC文档就提出了IP地址耗尽的可能性.IPv6技术的提出虽然可以从根本上解决地址短缺的问题,但是也无法立刻替换现有成熟且广泛应用的IPv4网络.既然不能 立 ...
- PHP - json_decode returns NULL的解决办法
碰到了PHP json_decode returns NULL, 肿么办? 1. google 一下, 关键字:PHP json_decode NULL 首先你能看到我这个这个帖子:) http:// ...