Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am not able to match cyrillic strings in kotlin doing the following:

val regex = Regex(":\p{Cyrillic}*:")
regex.find(any)

IDE shows word Cyrillic red and compiler says:

Unknown character property name {Cyrillic} near index 27

How to do this properly with kotlin?

question from:https://stackoverflow.com/questions/65641049/matching-cyrilic-characters-with-kotlins-regex-kt

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
543 views
Welcome To Ask or Share your Answers For Others

1 Answer

You should use the In prefix, p{InCyrillic}:

val regex = Regex(":\p{InCyrillic}*:")
println(regex.findAll(":Привет:...:Пока:").map{it.value}.joinToString() )
// => :Привет:, :Пока:

See the Kotlin demo


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...