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 triples (characters appearing three times in a row) in a given string

Java String: Exercise-86 with Solution

Write a Java program to count the number of triples (characters appearing three times in a row) in a given string.

Sample Solution:

Java Code:

import java.util.*;
public class Main
{
public int noOfTriples(String stng) 
{
  int l = stng.length();
  int ctr = 0;
  for (int i = 0; i < l-2; i++)
  {
    char tmp = stng.charAt(i);
    if (tmp == stng.charAt(i+1) && tmp == stng.charAt(i+2))
      ctr++;
  }
  return ctr;
}

public static void main (String[] args)
    {
      Main m= new Main();
      String str1 =  "welllcommmmeee";
      System.out.println("The given string is: "+str1);
      System.out.println("The number of triples in the string is: "+m.noOfTriples(str1));
	  }
}

Sample Output:

The given string is: welllcommmmeee
The number of triples in the string is: 4

Flowchart:

Flowchart: Java String Exercises - Count the number of triples (characters appearing three times in a row).

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to make a new string with each character of just before and after of a non-empty substring whichever it appears in a non-empty given string.
Next: Write a Java program to check whether a specified character is happy or not. A character is happy when the same character appears to its left or right in a 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