That's what I was hoping. Yet, my (simple) matchin...
# getting-started
m
That's what I was hoping. Yet, my (simple) matching stuff still looks like
val m = "(abc)".toRegex().matchEntire("blabla"); if (m != null) { val s = m.groups[1]!!.value; }
- not much difference from the matcher API.