Answers for "remove newline and whitespace"

CSS
0

remove whitespaces

//Extenion function
fun String.removeWhitespaces() = replace(" ", "")

// Uses
var str = "This is an example text".removeWhitespaces()

println(str)
Posted by: Guest on July-28-2021
0

replace whitespace with newline

# credit to the Stack Overflow user in the source link
$ echo 'τέχνη βιβλίο γη κήπος' | sed -E -e 's/[[:blank:]]+/n/g'
>>> τέχνη
    βιβλίο
    γη
    κήπος
Posted by: Guest on September-14-2021

Code answers related to "remove newline and whitespace"

Browse Popular Code Answers by Language