object Scala_String {
def test(stng: String): Int = {
var l = stng.length();
var ctr = 0;
for (i <- 0 to l-3)
{
var tmp = stng.charAt(i);
if (tmp == stng.charAt(i+1) && tmp == stng.charAt(i+2))
ctr=ctr+1;
}
return ctr;
}
def main(args: Array[String]): Unit = {
val str1 = "welllcommmmeee";
println("The given string is: "+str1);
println("The number of triples in the string is: "+test(str1));
}
}
Sample Output:
The given string is: welllcommmmeee
The number of triples in the string is: 4
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer