1 function ReplaceFirstUper(str) 2 { 3 str = str.toLowerCase(); 4 return str.replace(/\b(\w)|\s(\w)/g, function(m){ 5 return m.toUpperCase(); 6 }); 7 }
时间: 2024-12-18 09:41:46
1 function ReplaceFirstUper(str) 2 { 3 str = str.toLowerCase(); 4 return str.replace(/\b(\w)|\s(\w)/g, function(m){ 5 return m.toUpperCase(); 6 }); 7 }