Q:

Kotlin program to count the number of words in a string

belongs to collection: Kotlin String Programs

0

Given a string, we have to count the total number of words in it.

Example:

    Input:
    string = "IncludeHelp Tutorials"

    Output:
    Total number of words: 2

All Answers

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

Program to count the number of words in a string in Kotlin

package com.includehelp.basic

import java.util.*

/**
 * Method to count no. of words in provided String
 */
fun countWords(inputString: String): Int {
    //Split String by Space
    val strArray = inputString.split(" ".toRegex()).toTypedArray() // Spilt String by Space
    val sb = StringBuilder()
    var count = 0

    //iterate String array
    for (s in strArray) {
        if (s != "") {
            //Increase Word Counter
            count++
        }
    }
    return count
}

//Main function, entry point of program
fun main(args: Array<String>) {
    //Input Stream
    val sc = Scanner(System.`in`)

    //Input String Value
    println("Enter String : ")
    val str: String = sc.nextLine()

    //Print words Count in a String
    println("No. of Words in String : " + countWords(str))
}

Output

RUN 1:
Enter String :
Includehelp Inda Pvt Ltd
No. of Words in String : 4
---
Run 2:
Enter String :
Corona Virus APndimic in India
No. of Words in String : 5

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

total answers (1)

Kotlin program to determine if a string has all un... >>
<< Kotlin program to find the frequency of character ...