I just made a quick regex builder DSL which allows...
# announcements
m
I just made a quick regex builder DSL which allows me to track group numbers with names. Kotlin rocks!
Copy code
regex {
            group("decimal") { pattern("""\d+(?:\.\d+)?""") }
            group("unit") { pattern("""[^\d%]+""") }
        }