当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript String toUpperCase()用法及代码示例


字符串 toUpperCase() 方法

toUpperCase() 方法是 JavaScript 中的字符串方法,用于将所有字母转换为大写,并返回大写字母的新字符串。

用法:

    new_string = str.toUpperCase();

这里,

  • str是要转换的主字符串。
  • new_string是返回的所有字母均为大写的新字符串。

例子:

    Input:"Hello World!"
    Output:"HELLO WORLD!"
    Input:"[email protected]"
    Output:"[email protected]"

码:

<html>
<head>
<title>JavaScipt Example</title>
</head>

<body>
<script>		
	var main_str = "Hello World!";
	var new_str = main_str.toUpperCase();
	document.write("main_str =  " + main_str + "<br>");
	document.write("new_str =  " + new_str + "<br>");

	main_str = "[email protected]";
	new_str = main_str.toUpperCase();
	document.write("main_str =  " + main_str + "<br>");
	document.write("new_str =  " + new_str + "<br>");	
</script>
</body>
</html>

输出

main_str = Hello World!
new_str = HELLO WORLD!
main_str = [email protected]
new_str = [email protected]



相关用法


注:本文由纯净天空筛选整理自 String toUpperCase() Method with Example in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。