说我有一个字符串:"Test me".
"Test me"
我该如何将其转换为:"Test me"?
我尝试过使用:
string?.replace("\\s+", " ")
但似乎这\\s是Kotlin的非法逃脱.
\\s
kotlin
kotlin ×1