Answers for "delete whitespaces online"

CSS
0

perl remove all whitespace

$str =~ s/^s+//;
Posted by: Guest on February-03-2020
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

Browse Popular Code Answers by Language