當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。