Q:

Write a Scala program to repeat a specific number of characters for specific number of times from the last part of a given string

0

Write a Scala program to repeat a specific number of characters for specific number of times from the last part of a given string.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

object Scala_String {
  def test(stng: String, no_repeat: Int): String = {
    val l = stng.length;
    var new_word = "";
    for (i <- 0 to no_repeat - 1) {
      new_word += stng.substring(l - no_repeat, l);
    }
    new_word;
  }

  def main(args: Array[String]): Unit = {
    val str1 = "string";
    val no_char = 3;
    println("The given string is: " + str1);
    println("The new string after repetition: " + test(str1, no_char));
  }
}

Sample Output:

The given string is: string
The new string after repetition: inginging

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now