js remove plus

JavaScript
var dateString = 'Friday+September+13th';
var s = dateString .replace(/\+/g, ' ');

Source

Also in JavaScript: