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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。