Home » Kotlin » Kotlin programs » Kotlin string programs

Kotlin program to remove all occurrences of a character in a string

Here, we are going to learn how to remove all occurrences of a character in a string in Kotlin programming language?
Submitted by IncludeHelp, on April 28, 2020

Given a string and a character, we have to remove all occurrences of the character in given string.

Example:

    Input:
    string = "includeHelp Delhi"

    Output:
    String after removing character : "includeelp Deli"

Program to remove all occurrences of a character in a string in Kotlin

package com.includehelp.basic

import java.util.*

//Main Function, entry Point of Program
fun main(args: Array<String>) {
    // InputStream to get Input
    val scanner = Scanner(System.`in`)

    //Input String
    print("Enter String : ")
    var str = scanner.nextLine()

    //Input Character to Remove from String
    print("Enter Character : ")
    val c = scanner.next()[0]


    //Replace character with Empty String
    val newStr=str.replace(c.toString(),"",ignoreCase = true)


    //Print String after Replacement
    println("String after removing character : $newStr ")
}

Output

Run 1:
Enter String : includeHelp Delhi
Enter Character : h
String after removing character : includeelp Deli
---
Run 2:
Enter String : corona virus global death rate
Enter Character : o
String after removing character : crna virus glbal death rate



Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.