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


JavaScript String concat()用法及代碼示例


字符串 concat() 方法

concat() 是 JavaScript 中的字符串方法,用於連接(連接)兩個或多個字符串並返回新連接的字符串。

用法:

    String.concat(string1, string2, ...);

它接受字符串並返回新字符串(與主字符串連接的字符串)。

例子:

    Input:
    str1 = "IncludeHelp"
    str2 = ".com"
    Function call:str1.contact(str2);
    Output:
    "IncludeHelp.com"

    Input:
    str1 = "Hello"
    str2 = " " //space
    str3 = "World!"
    Function call:str1.contact(str2, str2);
    Output:
    "Hello World!"

碼:

<html>
<head>
<title>JavaScipt Example</title>
</head>
<body>
<script>		
	var str1 = "IncludeHelp";
	var str2 = ".com";
	document.write(str1.concat(str2) + "<br>");

	str1 = "Hello";
	str2 = " ";
	var str3 = "World!";
	document.write(str1.concat(str2, str3) + "<br>");	
</script>
</body>
</html>

輸出

IncludeHelp.com
Hello World!



相關用法


注:本文由純淨天空篩選整理自 String concat() Method with Example in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。