<@U56SRFLF6> as a note on regular expressions in K...
# getting-started
a
@Daniel as a note on regular expressions in Kotlin: use
"""
tripple quote strings so you don't have to escape regex symbols. And
toRegex()
that string. When doing that in Intellij IDEA it will detect the Regex and show you errors in the editor. For example:
Copy code
val myRegex = """([A-Z])\w+""".toRegex()