w3resource

Kotlin function: Check if a string is a palindrome

Kotlin Function: Exercise-5 with Solution

Write a Kotlin function that checks if a string is a palindrome or not.

Sample Solution:

Kotlin Code:

fun isPalindrome(str: String): Boolean {
    val cleanStr = str.toLowerCase().replace(Regex("[^a-zA-Z0-9]"), "")
    return cleanStr == cleanStr.reversed()
}

fun main() {
    val str1 = "Madam"
    val str2 = "Kotlin"

    println("$str1 is palindrome: ${isPalindrome(str1)}")
    println("$str2 is palindrome: ${isPalindrome(str2)}")
}

Sample Output:

Madam is palindrome: true
Kotlin is palindrome: false

Explanation:

In the above exercise -

  • The "isPalindrome()" function takes a str parameter, which represents the string to be checked.
  • Within the function, the input string str is first cleaned by converting it to lowercase and removing any non-alphanumeric characters using a regular expression.
  • The cleaned string cleanStr is compared with its reversed form (cleanStr.reversed()) using the == operator.
  • If the cleaned string and its reversed form are equal, the input string is a palindrome, and the function returns true. Otherwise, it returns false.
  • In the "main()" function, two sample strings (str1 and str2) are defined.
  • The "isPalindrome()" function is called for each string, and the result is printed to the console.

Kotlin Editor:


Previous: Kotlin function: Reverse a string.
Next: Print message without return.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/kotlin-exercises/function/kotlin-function-exercise-5.php