Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript replace hyphen with space

let str = "This-is-a-news-item-";
str = str.replace(/-/g, ' ');
alert(str); //This is a news item
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #javascript #replace #hyphen #space
ADD COMMENT
Topic
Name
6+8 =