java 字数统计,java字数,package cn.o
分享于 点击 21977 次 点评:168
java 字数统计,java字数,package cn.o
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."); }}
输出:
Word <Java> appeared 4 times in the paragraph.
用户点评