StringBuffer和正则表达式

news2025/1/13 13:51:17

StringBuffe

  • 获取int类型的最大值和最小值
System.out.println(Integer.MAX_VALUE);//int类型的最大值
System.out.println(Integer.MIN_VALUE);//int类型的最小值

输出结果在这里插入图片描述

  • Integer和String相互转换
Integer i1 = new Integer(100);
System.out.println(i1);

Integer i2 = new Integer("100");
System.out.println(i2);

输出结果在这里插入图片描述

int和String相互转换
//int--String
int i = 100;
System.out.println(i + "");   //1、和""进行拼接
System.out.println(String.valueOf(i));  //2、String.valueOf()
Integer i3 = new Integer(i);
System.out.println(Integer.toString(i));    //3、Integer类的toString方法
System.out.println(i3);     //4、Integer类的静态方法

//String--int
String str = "123";
Integer i4 = new Integer(str);
int is = i4.intValue();
System.out.println(is);

int is1 = Integer.parseInt(str);
System.out.println(is1);
System.out.println("----------------------");

//基本数据类型包装有八种,其中七种都有parseXxx方法,可以将这七种的字符串表现形式转换成基本数据类型
char[] c = str.toCharArray();
System.out.println(c);

输出结果在这里插入图片描述

  • StringBuffer
public class Demo13_StringBuffer {
    public static void main(String[] agrs) {
        StringBuffer sb = new StringBuffer();//空参构造
        System.out.println(sb.length());//输出0;容器中字符的个数,实际值
        System.out.println(sb.capacity());//输出16;容器的初始容量,理论值

        StringBuffer sb1 = new StringBuffer(10);//指定容量的字符串缓冲区对象
        System.out.println(sb.length());//输出0;
        System.out.println(sb1.capacity());//输出10

        StringBuffer sb2 = new StringBuffer("abcd");//指定字符串内容的字符串缓冲区对象
        System.out.println(sb2.length());//输出4;
        System.out.println(sb2.capacity());//输出20,字符串的length+容器的初始容量
    }
}

输出结果在这里插入图片描述

public class Demo13_StringBuffer1 {
    public static void main(String[] agrs) {
        StringBuffer sb = new StringBuffer();

        //append可以把任意类型数据添加到字符串缓冲区里面
        System.out.println(sb.append(123455));
        System.out.println(sb.append("abcde"));

        StringBuffer sb1 = new StringBuffer("123456");
        //insert在指定位置把任意类型的数据插入到字符串缓冲区里面,并返回字符串缓冲区本身
        System.out.println(sb1.insert(3, "abcd"));

        StringBuffer sb2 = new StringBuffer("ABCDEF");

        //deleteCharAt删除指定位置的字符,并返回本身
        System.out.println(sb2.deleteCharAt(4));

        //delete删除从指定位置开始指定位置结束的内容,并返回本身
        System.out.println(sb2.delete(0, 3));
        System.out.println(sb2.delete(0, sb1.length()));

        //replace(int start,int end,String str),从start开始到end用str代替
        StringBuffer sb3 = new StringBuffer("123456789");
        System.out.println(sb3.replace(0,3,"abc"));

        //reverse();字符串反转
        StringBuffer sb4 = new StringBuffer("123456789");
        System.out.println(sb4.reverse());

        //substring(int start),从指定位置截取到末尾,返回值不再是StringBuffer本身,而是String
        StringBuffer sb5 = new StringBuffer("123456789");
        String sbstr =sb5.substring(6);
        System.out.println(sbstr);
        System.out.println(sb5);

        //substring(int start,int end),截取从指定开始位置到指定结束位置,返回值不再是StringBuffer本身,而是String本身
        StringBuffer sb6 = new StringBuffer("123456789");
        String sbstr1 =sb6.substring(0,6);
        System.out.println(sbstr1);
        System.out.println(sb6);
    }
}

输出结果在这里插入图片描述

  • StringBuffer和String的相互转换
public class Demo13_StringBuffer2 {
    /**
     * StringBuffer和String的相互转换
     */
    public static void main(String[] agrs) {
       //String转换为StringBuffer
        StringBuffer sb = new StringBuffer("abc"); //通过构造方法将字符串转换为StringBuffer
        System.out.println(sb);

        StringBuffer sb1 = new StringBuffer(); //通过append() 将字符串转换为StringBuffer
        System.out.println(sb1.append("123"));

        //StringBuffer转换为String
        StringBuffer sb2 = new StringBuffer("Abc");
        String s = new String(sb2); //通过构造方法将StringBuffer转换为String
        System.out.println(s);
        System.out.println(sb2.toString());//通过toString方法将StringBuffer转换为String
        System.out.println(sb2.substring(0,sb2.length()));//通过substring(int start,int end)方法将StringBuffer转换为String
    }
}

输出结果在这里插入图片描述

  • String和StringBuffer分别作为参数传递
public class Demo13_StringBuffer3 {
    public static void main(String[] agrs) {
        //String作为参数传递,基本数据类型的值传递不改变其值
        String s = "abc";
        System.out.println(s);//输出abc
        change(s);
        System.out.println(s);//输出abc

        String str1="021";
        String str = str1+"123";
        System.out.println(str1);
        change(str);
        System.out.println(str);


        System.out.println("-----------------------------");

        //StringBuffer作为参数传递,引用数据类型的值传递,改变其值
        StringBuffer sb = new StringBuffer();
        sb.append("ABCD");
        System.out.println(sb);//输出ABCD
        change(sb);
        System.out.println(sb);//输出ABCDEFG
    }

    private static void change(StringBuffer sb) {
        sb.append("EFG");
    }

    private static void change(String s) {
        s +="123";
    }
}

输出结果在这里插入图片描述

  • StringBuffer功能实现(测试)
public class Demo13_StringBufferTest {
    public static void main(String[] agrs) {
        int[]arr={1,2,3};
        StringBuffer sb = new StringBuffer("[");    //创建一个字符串缓冲区对象,将[添加到缓冲区
        for (int i =0;i<arr.length;i++){    //遍历数组
            if (i == arr.length-1){         //添加判断条件,如果数组索引是最后一位的话就添加],java中数组索引从0开始,所以需要-1
                sb.append(arr[i]).append("]");
            }else {
                sb.append(arr[i]).append(",");
            }
        }
        System.out.println(sb.toString());
    }
}

输出结果
在这里插入图片描述

在这里插入图片描述

正则表达式

  • 正则表达式(测试)
 /**
         * 需求:校验qq号码.
         * * 1:要求必须是5-15位数字
         * * 2:0不能开头
         * * 3:必须都是数字
*/
String regex = "[1-9]\\d{4,14}";
System.out.println("012365".matches(regex));//false
System.out.println("12365".matches(regex));//true
System.out.println("dvsv12365".matches(regex));//false
System.out.println("653435434343543534512365".matches(regex));//false

输出结果
在这里插入图片描述

public static void main(String[] agrs) {
        regex12();
        regex34();
        regex5678();
 private static void regex12() {
        String regex1 ="[abc]";
        System.out.println("a".matches(regex1));//ture
        System.out.println("g".matches(regex1));//false
        System.out.println("---------------------------");
        String regex2 ="[^abc]";
        System.out.println("a".matches(regex2));//false
        System.out.println("g".matches(regex2));//ture
        System.out.println("---------------------------");
    }
    private static void regex34() {
        String regex3 ="[[a-zA-Z]]";
        System.out.println("a".matches(regex3));//ture
        System.out.println("G".matches(regex3));//ture
        System.out.println("2".matches(regex3));//false
        System.out.println("---------------------------");

        String regex4 ="[0-9]";
        System.out.println("a".matches(regex4));//false
        System.out.println("2".matches(regex4));//ture
    }
    private static void regex5678() {
        String regex5  ="[a-d[m-p]]";
        System.out.println("a".matches(regex5));//ture
        System.out.println("n".matches(regex5));//ture
        System.out.println("2".matches(regex5));//false
        System.out.println("---------------------------");
        String regex6 ="[a-z&&[def]]";
        System.out.println("a".matches(regex6));//false
        System.out.println("d".matches(regex6));//ture
        System.out.println("---------------------------");
        String regex7  ="[a-z&&[^bc]]";
        System.out.println("a".matches(regex7));//ture
        System.out.println("1".matches(regex7));//false
        System.out.println("c".matches(regex7));//false
        System.out.println("---------------------------");
        String regex8 ="[a-z&&[^m-p]]";
        System.out.println("a".matches(regex8));//ture
        System.out.println("n".matches(regex8));//false
    }
}

输出结果在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/693713.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

08 | 事务到底是隔离的还是不隔离的?

以下内容出自《MySQL 实战 45 讲》 08 | 事务到底是隔离的还是不隔离的&#xff1f; 事务启动时机 事务启动时机&#xff1a; begin/start transaction 命令并不是一个事务的起点&#xff0c;在执行到它们之后的第一个操作 InnoDB 表的语句&#xff0c;事务才真正启动。如果想…

Gradio的Button组件介绍

❤️觉得内容不错的话&#xff0c;欢迎点赞收藏加关注&#x1f60a;&#x1f60a;&#x1f60a;&#xff0c;后续会继续输入更多优质内容❤️ &#x1f449;有问题欢迎大家加关注私戳或者评论&#xff08;包括但不限于NLP算法相关&#xff0c;linux学习相关&#xff0c;读研读博…

从0到1精通自动化测试,pytest自动化测试框架,配置文件pytest.ini(十三)

一、前言 pytest配置文件可以改变pytest的运行方式&#xff0c;它是一个固定的文件pytest.ini文件&#xff0c;读取配置信息&#xff0c;按指定的方式去运行 二、ini配置文件 pytest里面有些文件是非test文件pytest.ini pytest的主配置文件&#xff0c;可以改变pytest的默认…

SpringBoot多环境启动

文章目录 多环境启动多环境启动基本格式多环境启动命令格式多环境启动的兼容性 多环境启动 多环境启动基本格式 我们在开发中和上线后的环境中, 有些配置文件的值是不相同的, 但是当项目上线后我们肯定是不能修改配置文件的, 于是我们需要针对不同的环境进行不同的配置 例如下…

【C语言之区分sizeof 和 strlen】

C语言之区分sizeof 和 strlen 详解C语言sizeof 和 strlen1、单目操作符1.1、详解sizeof单目操作符1.2、sizeof代码部分1.2.1、sizeof例程11.2.2、sizeof例程21.2.3、sizeof例程3 2、详解strlen函数2.1、strlen代码部分2.1.1、strlen例程1 3、区别strlen函数和sizeof操作符3.1、…

数据库—属性闭包

属性闭包 要理解属性闭包先理解以下概念 U属性集合&#xff0c;比如一个表A有这些属性**{a,b,c,d,e}**F函数依赖集 这个就是由已知的一些函数依赖组成的集合&#xff0c;比如&#xff1a; F {a->b,b->c,c->d,ab->e} //F函数依赖集R(U&#xff0c;F)表示一个关系模…

linux工程管理工具make

linux工程管理工具make 一、make 工具的功能二、makefile 文件三、makefile 的规则Makefile 介绍一、Makefile 的规则二、一个示例三、其他例子makefiletest.cprocess.cprocess.h截图 一、make 工具的功能 1、主要负责一个软件工程中多个源代码的自动编译工作 2、还能进行环境…

Spring boot装载模板代码工程实践问题之二

Spring boot装载模板代码工程实践问题解决方案 替代方案解决方案及解释 Spring boot装载模板代码工程中&#xff0c;后续有自定注解的要求&#xff0c;在本地运行无恙&#xff0c;打成jar启动后&#xff0c;自定义注解会无效。 替代方案 在测试compiler.getTask多种参数后&…

7.MMM

文章目录 MMM概念配置mysql配置文件主主复制主从服务器配置--只需要配置一个主服务器的安装mysql-MMM 测试故障测试客户端测试 MMM 概念 MMM&#xff08;Master-Master replication manager for MvSQL&#xff0c;MySQL主主复制管理器&#xff09; 是一套支持双主故障切换和双…

git merge和git rebase的区别

本文来说下git merge和git rebase的区别 文章目录 分支合并解决冲突git rebase和git merge的区别本文小结 分支合并 git merge是用来合并两个分支的。比如&#xff1a;将 b 分支合并到当前分支。同样git rebase b&#xff0c;也是把 b 分支合并到当前分支。他们的 「原理」如下…

并发-操作系统底层工作的整体认识

冯诺依曼计算机模型 五大模块&#xff1a;输入、输出、计算器【cpu】、存储器【内存】、控制器 现在计算机硬件结构设计 CPU&#xff1a;控制、运算、数据

工业机器人运动学与Matlab正逆解算法学习笔记(用心总结一文全会)(三)

文章目录 机器人逆运动学△ 代数解求 θ 4 \theta_4 θ4​、 θ 5 \theta_5 θ5​、 θ 6 \theta_6 θ6​○ 求解 θ 4 \theta_4 θ4​○ 求解 θ 5 \theta_5 θ5​○ 求解 θ 6 \theta_6 θ6​ CSDN提示我字数太多&#xff0c;一篇发不下&#xff0c;只好拆分开x2。。。 关于…

shiro-all由1.3.2 升级到1.11.0后出现重定向次数过多的问题:ERR_TOO_MANY_REDIRECTS

最近漏洞升级, shiro-all由1.3.2 升级到1.11.0后, 导致系统登录首页打不开, 一直提示重定向次数过多: ERR_TOO_MANY_REDIRECTS: 经定位: 是shiroFilter配置中: loginUrl配置问题 以一下例子具体说明参数含义&#xff1a; 1&#xff0c;假设网站的网址是http://localhost…

基于STM32F407的智慧农业系统

文章目录 一、设备平台二、功能说明三、硬件系统设计实现与图表四、软件系统设计实现与流程图五、调试过程中出现的问题及相应解决办法六、程序设计1. 开始任务函数2. LED任务函数3. KEY任务函数4. UART任务函数5. OLED任务函数6. DHT11任务函数7. BEEP任务函数8. ADC任务函数9…

写一个简单的静态html页面demo,包含幻灯片

效果图&#xff1a; 代码如下&#xff0c;图片文件可自行更换&#xff1a; <!DOCTYPE html> <html> <head><title>公司网站</title><style>/* 样式定义 */body {font-family: Arial, sans-serif;margin: 0;padding: 0;}header {backgrou…

什么是Session

1、web中什么是会话 &#xff1f; 用户开一个浏览器&#xff0c;点击多个超链接&#xff0c;访问服务器多个web资源&#xff0c;然后关闭浏览器&#xff0c;整个过程称之为一个会话。 2、什么是Session &#xff1f; Session:在计算机中&#xff0c;尤其是在网络应用中&…

Linux学习之进程概念和ps命令

进程概念和启动关闭进程 进程就是运行中的程序 在C语言中进程只能只能从main()函数开始运行。 进程终止的方式有两种&#xff1a; 正常终止&#xff1a;从main()函数返回、调用exit()等方式 异常终止&#xff1a;调用abort、接收信号等。有可能 ps ps是“process status”的缩…

华为OD机试真题 Python 实现【光伏场地建设规划】【2023Q1 100分】

一、题目描述 祖国西北部有一片大片荒地&#xff0c;其中零星的分布着一些湖泊&#xff0c;保护区&#xff0c;矿区&#xff1b;整体上常年光照良好&#xff0c;但是也有一些地区光照不太好。某电力公司希望在这里建设多个光伏电站&#xff0c;生产清洁能源。对每平方公里的土…

React入门(B站李立超老师)

视频地址&#xff1a;https://www.bilibili.com/video/BV1bS4y1b7NV/ 课程第一部分代码&#xff1a; https://pan.baidu.com/s/16hEN7j4hLDpd7NoFiS8dHw?pwd4gxv 提取码: 4gxv 课程第二部分代码&#xff1a;https://pan.baidu.com/s/1mDkvLqYVz1QGTV1foz5mQg?pwd5zir 提取码&…

NCV2903DR2G 低偏移电压比较器

NCV2903DR2G安森美深力科是一款双独立精密电压比较器&#xff0c;能够进行单电源或分电源操作。这些设备被设计为允许在单电源操作的情况下实现共模范围到地电平。低至2.0 mV的输入偏移电压规格使该设备成为消费类汽车和工业电子中许多应用的绝佳选择。 特性&#xff1a; 1.宽…