The replaceFirst() function returns a new string with the first occurrence of oldChar (string to be replaced) replaced with newChar (string to replace with).
Kotlin program to demonstrate the example of replaceFirst() function
// Example of replaceFirst() function
fun main()
{
// Demonstrating the replaceFirst() function
val pattern = Regex("Hi")
// Replace all "Hi" with "Hello"
println(pattern.replaceFirst("Hi, there.", "Hello"))
println(pattern.replaceFirst("Hi Alex! Please say Hi to Boss.", "Hello"))
println(pattern.replaceFirst("IncludeHelp", "Okay"))
println()
}
Output:
Hello, there.
Hello Alex! Please say Hi to Boss.
IncludeHelp
Kotlin program to demonstrate the example of replaceFirst() function
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer