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 the number of words ending in 'm' or 'n' (not case sensitive) in a given text

Java String: Exercise-91 with Solution

Write a Java program to count the number of words ending in 'm' or 'n' (not case sensitive) in a given text.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public int endWithmOrn(String stng) 
{
  int l = stng.length();
  int ctr = 0;
  stng = stng.toLowerCase();
  for (int i = 0; i < l; i++) 
  {
    if (stng.charAt(i) == 'm' || stng.charAt(i) == 'n') 
	{
      if (i < l-1 && !Character.isLetter(stng.charAt(i+1)))
        ctr++;
      else if (i == l-1)
        ctr++;
    }
  }
  return ctr;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "mam is in the room";
      System.out.println("The given string is: "+str1);
      System.out.println("The number of words ends eith m or n is: "+m.endWithmOrn(str1));
	  }
}

Sample Output:

The given string is: mam is in the room
The number of words ends eith m or n is: 3

Pictorial Presentation:

Java String Exercises: Count the number of words ending in 'm' or 'n' (not case sensitive) in a given text.

Flowchart:

Flowchart: Java String Exercises - Count the number of words ending in 'm' or 'n' (not case sensitive) in a given text.

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to check the number of appearances of the two substrings appear anywhere in the string..
Next: Write a Java program to return a substring after removing the all instances of remove string as given from the given main string.

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