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: Check the number of appearances of the two substrings appear anywhere in the string

Java String: Exercise-90 with Solution

Write a Java program to check the number of appearances of the two substrings appear anywhere in the string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public boolean isAndTheEquality(String stng) 
{
  int l = stng.length();
  int st_the = 0;
  int st_is = 0;
  for (int i = 0; i < l; i++) 
  {
    if (i < l - 2) 
	{
      String tmp = stng.substring(i,i+3);
      if (tmp.equals("the"))
        st_the++;
    }
    if (i < l - 1) 
	{
      String tmp2 = stng.substring(i,i+2);
      if (tmp2.equals("is"))
        st_is++;
    }
  }
  if (st_the == st_is)
    return true;
  else
    return false;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "Thisisthethesis";
      System.out.println("The given string is: "+str1);
      System.out.println("Are the appearance of 'the' and 'is' equal? "+m.isAndTheEquality(str1));
	  }
}

Sample Output:

The given string is: Thisisthethesis
Are the appearance of 'the' and 'is' equal? false

Pictorial Presentation:

Java String Exercises: Return true if the number of appearances of 'the' and 'is' anywhere in the string is equal

Flowchart:

Flowchart: Java String Exercises - Return true if the number of appearances of 'the' and 'is' anywhere in the string is equal

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to calculate the sum of the numbers appear in a given string.
Next: Write a Java program to count the number of words ending in 'm' or 'n' (not case sensitive) in a given text.

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