Answers for "python replace whitespace with dash"

0

replace spaces with dashes

const text = "codetogo saved me tons of time";

text.replace(/ /g, "-");
Posted by: Guest on October-20-2021

Code answers related to "python replace whitespace with dash"

Code answers related to "Javascript"

Browse Popular Code Answers by Language