Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java String Exercises: Count how many times the substring 'life' present at anywhere in a given string

Java String: Exercise-76 with Solution

Write a Java program to count how many times the substring 'life' present at anywhere in a given string. Counting can also happen for the substring 'li?e',any character instead of 'f'.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public int substringCounting(String stng) 
{
  int l = stng.length();
  int ctr = 0;
  String firsttwo = "li";
  String lastone = "e";
  if (l < 4)
    return 0;
  for (int i = 0; i < l - 3; i++) 
  {
    if (firsttwo.compareTo(stng.substring(i,i+2)) == 0 && lastone.compareTo(stng.substring(i+3, i+4)) == 0)
      ctr++;
  }
  return ctr;
}
public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "liveonwildlife";
      System.out.println("The given string is: "+str1);
      System.out.println("The substring life or li?e appear number of times: "+m.substringCounting(str1));
	  }
}

Sample Output:

The given string is: liveonwildlife
The substring life or li?e appear number of times: 2

Pictorial Presentation:

Java String Exercises: Count how many times the substring 'life' present at anywhere in a given string

Flowchart:

Flowchart: Java String Exercises - Count how many times the substring 'life' present at anywhere in a given string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to check whether a given substring presents in the middle of another given string. Here middle means difference between the number of characters to the left and right of the given substring not more than 1.
Next: Write a Java program to add a string with specific number of times separated by a substring.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe