https://kotlinlang.org logo
Title
d

Dominaezzz

07/05/2018, 6:51 AM
Does KN have regex support? And if so, is it platform dependant or is it built from scratch?
g

gildor

07/05/2018, 7:03 AM
I don’t think so, you can use some C library for this or some API of your platform
m

msink

07/05/2018, 7:06 AM
Everything in
kotlin.text.regex.*
should work.
runtime/src/main/kotlin/kotlin/text/Regex.kt
actual class Regex ...
g

gildor

07/05/2018, 7:35 AM
Oh, cool
o

olonho

07/05/2018, 7:39 AM
yes, full Java-style regex support, including Unicode, is provided
👍 2
d

Dominaezzz

07/05/2018, 8:02 AM
Nice. Couldn't find the source code at the time.