The number of occurrences of the specified element in the Java statistics string _java

Source: Internet
Author: User

This article illustrates the number of occurrences of a string in the statistical text or the number of occurrences of the specified element in the string, which is shared for your reference, as follows

Run Effect chart:

The number of characters on this file with "a" on the program lookup

The specific code is as follows

 package com.zuidaima.util.string; 
Import java.io.*; public class Countstring {public static int count (string filename, string target) throws FileNotFoundException, I 
  oexception {FileReader fr = new FileReader (filename); 
  BufferedReader br = new BufferedReader (FR); 
  StringBuilder strb = new StringBuilder (); 
  while (true) {String line = Br.readline (); 
  if (line = = null) {break; 
  } strb.append (line); 
  String result = Strb.tostring (); 
  int count = 0; 
  int index = 0; 
  while (true) {index = Result.indexof (target, index + 1); 
  if (Index > 0) {count++; 
  } else {break; 
  } br.close (); 
 return count; 
  public static void Main (string[] args) {try {System.out.println (count ("D:\\zuidaima.txt", "a")); 
  catch (FileNotFoundException e) {e.printstacktrace (); 
  catch (IOException e) {e.printstacktrace (); } 
 } 
  
}

  above is the number of occurrences of the specified element in the Java statistics string, which I hope will help you in your study.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.