Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,936 questions

51,873 answers

573 users

How to get the middle words of a string in Scala

1 Answer

0 votes
object MiddleWordsOfAString_Scala  {
  def getMiddleWords(string: String): String = {
    val wordsArr = string.split(" ")
    val numWords = wordsArr.length

    if (numWords % 2 == 0) {
      val middle1 = wordsArr((numWords / 2) - 1)
      val middle2 = wordsArr(numWords / 2)
      
      s"$middle1 $middle2"
    } else {
      val middleMinus1 = wordsArr((numWords / 2) - 1)
      val middle = wordsArr(numWords / 2)
      val middlePlus1 = wordsArr((numWords / 2) + 1)
      
      s"$middleMinus1 $middle $middlePlus1"
    }
  }

  def main(args: Array[String]): Unit = {
    val string = "c++ c java scala c# python rust"
    
    println(getMiddleWords(string))
  }
}
 



/*
run:

java scala c#

*/

 



answered Oct 8, 2024 by avibootz
edited Oct 9, 2024 by avibootz
...