标签:io java ar cti on c r javascript type
<script type="text/javascript">
function replaceReg(reg,str){
str = str.toLowerCase();
return str.replace(reg,function(m){return m.toUpperCase()})
}
var reg = /\b(\w)|\s(\w)/g;
var str = ‘share javascript‘;
var str2 = ‘SHARE JAVASCRIPT‘;
var str3 = ‘Test \n str is no good!‘;
var str4 = ‘final test‘;
document.write(replaceReg(reg,str)+‘<br />‘);
document.write(replaceReg(reg,str2)+‘<br />‘);
document.write(replaceReg(reg,str3)+‘<br />‘);
document.write(replaceReg(reg,str4)+‘<br />‘);
</script>
以下只首字母大写,其它字母大小写不作处理
<script language="JavaScript">
<!-- www.yuju100.com
var str="xi nAn shi you xUe yuan china people"
alert(str.replace(/\s[a-z]/g,function($1){return $1.toLocaleUpperCase()}).replace(/^[a-
z]/,function($1){return $1.toLocaleUpperCase()}))
//-->
</script>标签:io java ar cti on c r javascript type
原文地址:http://www.cnblogs.com/zhujiasheng/p/3993008.html