var s = "aaa-bbb-ccc-ddd-eee";var r = /\b\w/g;var res;s.replace(r, function (a) { return a.toUpperCase();});