calculate how many punctuation in string

 

  1. public class punctuation {  
  2.     public static void main (String [] args) {  
  3.         //Stores the count of punctuation marks  
  4.         int countPuncMarks = 0;  
  5.         String str = "Good Morning! Mr. James Potter. Had your breakfast?";  
  6.         for (int i = 0; i < str.length(); i++) {  
  7.                 //Checks whether given character is punctuation mark  
  8.             if(str.charAt(i) == '!' || str.charAt(i) == ',' || str.charAt(i) == ';' || str.charAt(i) == '.' ||        str.charAt(i) == '?' || str.charAt(i) == '-' ||  
  9.                     str.charAt(i) == '\'' || str.charAt(i) == '\"' || str.charAt(i) == ':') {  
  10.                 countPuncMarks++;  
  11.             }  
  12.         }  
  13.         System.out.println("Total number of punctuation characters exists in string: " +        countPuncMarks);  
  14.     }  
  15. }  

Comments

Popular posts from this blog

Git and Github

bubble short Q1

Java Program to Check Whether the String Consists of Special Characters