zoukankan      html  css  js  c++  java
  • 字符统计与基本正则

    统计字符个数:
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    </head>
    <body>
    <script>
    var count = 0;
    var stopposition = 0
    var item = "stop"
    var str = "start,stop,speed,start,stop,speed,start,stop,speed,start,stop,speed,"
    while( stopposition < str.length ){
    if( str.indexOf( item , stopposition) > 0 ){
    count ++
    stopposition = str.indexOf( item , stopposition)
    stopposition += item.length ;
    }else{
    stopposition += str.length
    }
    }
    console.log(str)
    console.log( '个数为', count );
    </script>
    </body>
    </html>
    正则的基本表达:
     
  • 相关阅读:
    微信红包高并发交易
    MQ夺命11问
    美团雪花LEAF算法
    Mysql一遍过
    分布式
    如何注册和发现服务
    服务发布和引用
    微服务的构成
    什么是微服务
    Java的动态代理
  • 原文地址:https://www.cnblogs.com/curtain473/p/9852902.html
Copyright © 2011-2022 走看看