zoukankan      html  css  js  c++  java
  • 求字符串的大小的长度

          public class Work {

           /*
                   *  获取一个字符串中,另一个字符串出现的次数
                   *  思想:
                   *    1. indexOf到字符串中到第一次出现的索引
                   *    2. 找到的索引+被找字符串长度,截取字符串
                   *    3. 计数器++
                 */
                public static void main(String[] args) {

                String s="hellowrdhellowrdhellowrdhellowrdhellowrdhellowrd";     //定义字符串
                       function (s,"l");  //添加function方法

             }

            public  static void function(String s, String m) {  //调用function方法
                      int count=0;  定义 int类型的数量
                      while(s.indexOf(m)>=0){  //使while语句 定义查找字符或者子串第一次出现的地方从零开始
                          int  index=s.indexOf(m)+m.length();   //查找m的字符串和m字符串的长度
                          s=s.substring(index)        //  ;截取字符串
                          count++;              

            }
                        int q=s.length();      //字符串的长度


                System.out.println("出现的 索引 :"+count+"     字符串的长度:"+q);  //打印
            
        }

          }

  • 相关阅读:
    修改tomcat访问路径
    HTML img标签属性
    HTML marquee标签属性详解
    HTML input标签
    HTML iframe 标签
    Linux root默认密码问题
    [Linux]查看本机IP
    [Linux]命令行模式切换
    [Linux]命令root与other切换
    [Linux]XAMPP安装
  • 原文地址:https://www.cnblogs.com/hph1728390/p/10555584.html
Copyright © 2011-2022 走看看