博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
String类的常见方法的使用案例
阅读量:5159 次
发布时间:2019-06-13

本文共 1322 字,大约阅读时间需要 4 分钟。

 

 String类的常见方法的使用案例

//使用指定的字符串替换当前字符串中指定的内容        //将helloworld中的o替换为a        String s="HelloWorld";        String ss=s.replace("o","a");        System.out.println("替换前:"+s);        System.out.println("替换后:"+ss);                //截取当前字符串中指定的内容,保留HelloWorld中0-w之间的内容,不包括w,s.indexOf("w")表示w在字符串s中的下标,下标是从0开始的;        s=s.substring(0, s.indexOf("W"));        System.out.println("截取以后的值:"+s);                //将字符串转为大写或者小写        System.out.println("将s变量中包含的字符串转为小写:"+s.toLowerCase());        System.out.println("将s变量中包含的字符串转为大写:"+s.toUpperCase());                //忽略大小写的比较        System.out.println("忽略大小写的比较::"+"Hello".equalsIgnoreCase("HELLO"));

 

算当前字符串中有多少个指定字符的案例

public static void main(String[] args){                String s1="1110001110111111asdas1111csdcsdc" +                "222111111111111111111121222";        int totol=count1(s1, "1");        System.out.println(totol);    } public static int count1(String s1,String s2){        String s=s1;                        int count =0;                while(true){            if (s.indexOf(s2)!=-1) {//如果找到s2                count++;                s=s.substring(s.indexOf(s2)+1);//将第一次找到的dest截掉,保留后面的部分,继续查找                continue ;            }else{                break;            }        }        return count;    }

 

转载于:https://www.cnblogs.com/YLQBL/p/6413722.html

你可能感兴趣的文章
求出斐波那契数组
查看>>
lr_start_transaction/lr_end_transaction事物组合
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>
2017.3.24上午
查看>>
Python-常用模块及简单的案列
查看>>
LeetCode 159. Longest Substring with At Most Two Distinct Characters
查看>>
LeetCode Ones and Zeroes
查看>>
基本算法概论
查看>>
jquery动态移除/增加onclick属性详解
查看>>
JavaScript---Promise
查看>>
暖暖的感动
查看>>
Java中的日期和时间
查看>>
Django基于admin的stark组件创建(一)
查看>>
PAT L2-016 愿天下有情人都是失散多年的兄妹
查看>>
抛弃IIS,利用FastCGI让Asp.net与Nginx在一起
查看>>
C. Tanya and Toys_模拟
查看>>