"Chatham[^]".toRegex() this does not run because t...
# announcements
j
"Chatham[^]".toRegex() this does not run because the ^ matches the ] as "match every char but ]" and there is a ] missing, it would be "Chatham[^]]".toRegex() (normally the first } should be scaped in order to gain readability)