How do I replace duplicate whitespaces in a String in Kotlin?

后端 未结 1 1403
渐次进展
渐次进展 2020-12-03 04:31

Say I have a string: \"Test me\".

how do I convert it to: \"Test me\"?

I\'ve tried using:

string?.replace(\"\\\\         


        
相关标签:
1条回答
  • 2020-12-03 04:45

    replace function in Kotlin has overloads for either raw string and regex patterns.

    "Test  me".replace("\\s+", " ")
    

    This replaces raw string \s+, which is the problem.

    "Test  me".replace("\\s+".toRegex(), " ")
    

    This line replaces multiple whitespaces with a single space. Note the explicit toRegex() call, which makes a Regex from a String, thus specifying the overload with Regex as pattern.

    There's also an overload which allows you to produce the replacement from the matches. For example, to replace them with the first whitespace encountered, use this:

    "Test\n\n  me".replace("\\s+".toRegex()) { it.value[0].toString() }
    


    By the way, if the operation is repeated, consider moving the pattern construction out of the repeated code for better efficiency:

    val pattern = "\\s+".toRegex()
    
    for (s in strings)
        result.add(s.replace(pattern, " "))
    
    0 讨论(0)
提交回复
热议问题