I'm making a method in Kotlin using Regex that checks if a string contains one or more of certain pronouns (such as "I", "we", "you", etc). E.g. "We are a tech company" should be a match, "Web is for spiders" should not be a match.
I tried with this code:
fun main() {
    val text = "We are testing!"
    val regex = "/\b(i|you|we)\b/g".toRegex()
    if (regex.containsMatchIn(text.lowercase())) {
        println("match")
    } else {
        println("no match")
    }
}
, but it prints "no match".
 
    