zoukankan      html  css  js  c++  java
  • 查找字词索引

    using System;
    namespace 函数重载
    {
      public class program
      {
        static void Main()
          {
            string msg = "你流口水弗兰克斯老师三发来看看老师是女方家老师那不就额老师编辑部艾达王老师出的" ;

            int count = 0;
            int index = 0;
            while((index = msg.IndexOf("老师",index)) != -1)
              {
                count++;
                Console.WriteLine("第{0}次出现“老师”的索引位置为:{1}", count, index);
                index += "老师".Length;
              }
              Console.WriteLine("一共出现了{0}次", count);
              Console.ReadKey();


          }


      }
    }

  • 相关阅读:
    基于Spring的集群会话共享方案-spring session
    Tensorflow 模型线上部署
    Dijkstra算法
    BFS和DFS
    图的基本概念
    排序5
    排序4
    排序3
    排序2
    排序1
  • 原文地址:https://www.cnblogs.com/decoct-tea/p/10973086.html
Copyright © 2011-2022 走看看