zoukankan      html  css  js  c++  java
  • java 实现统计某段文字在内容中出现的次数

    http://outofmemory.cn/code-snippet/815/java-zishutongji
    一个api,位于apache.commons.lang.StringUtils类下的一个StringUtils.countMatches(paragraph, string);方法,这个方法返回值是一个数字
     
     
    代码:

    package cn.outofmemory;

    import org.apache.commons.lang3.StringUtils;

    public class WordCounter {

        public static void main(String[] args) {

            // String with our paragraph
            String paragraph = "Java Code Geeks (JCGs) is an independent online community focused on creating the"
            + "ultimate Java-to-Java developers resource center; targeted at the technical architect, technical"
            + "team lead (senior developer), project manager and junior developers alike. JCGs serve the Java, "
            + "Scala, Android, SOA, Agile and Telecom communities with daily news written by domain experts, "
            + "articles, tutorials, reviews, announcements, code snippets and open source projects.";

            // Declare the word you want to search
            String string = "Java";

            // Count word repetitions
            int counter = StringUtils.countMatches(paragraph, string);

            // Print the result
            System.out.println("Word <" + string + "> appeared " + counter + " times in the paragraph.");
        }
    }

     
     
     
  • 相关阅读:
    ISP整体流程介绍
    Demosiac 去马赛克 (CIP)
    ISP-CMOS图像传感器内部结构及工作原理
    数字图像显示原理
    浅析图像到视频
    摄像机gamma校正
    理解 Pix Binning
    人工智能"眼睛"——摄像头
    CMOS 摄像头的Skipping 和 Binning 模式
    android 向服务器发送json数据,以及发送头信息的三种方式
  • 原文地址:https://www.cnblogs.com/svennee/p/4082827.html
Copyright © 2011-2022 走看看