Does KN have regex support? And if so, is it platf...
# kotlin-native
d
Does KN have regex support? And if so, is it platform dependant or is it built from scratch?
g
I don’t think so, you can use some C library for this or some API of your platform
m
Everything in
kotlin.text.regex.*
should work.
runtime/src/main/kotlin/kotlin/text/Regex.kt
actual class Regex ...
g
Oh, cool
o
yes, full Java-style regex support, including Unicode, is provided
👍 2
d
Nice. Couldn't find the source code at the time.