此方法添加兩個或更多字符串並返回一個新的單個字符串。
用法
string.concat(string2, string3[, ..., stringN]);
參數詳細信息
string2...stringNâˆ' 這些是要連接的字符串。
返回值
返回單個串聯字符串。
示例
var str1 = new String( "This is string one" );
var str2 = new String( "This is string two" );
var str3 = str1.concat(str2.toString());
console.log("str1 + str2:"+str3)
在編譯時,它將在 JavaScript 中生成相同的代碼。
其輸出如下
str1 + str2:This is string oneThis is string two
相關用法
- TypeScript String charCodeAt()用法及代碼示例
- TypeScript String charAt()用法及代碼示例
- TypeScript String slice()用法及代碼示例
- TypeScript String split()用法及代碼示例
- TypeScript String search()用法及代碼示例
- TypeScript String indexOf()用法及代碼示例
- TypeScript String replace()用法及代碼示例
- TypeScript String localeCompare()用法及代碼示例
- TypeScript String substring()用法及代碼示例
- TypeScript String lastIndexOf()用法及代碼示例
- TypeScript String substr()用法及代碼示例
- TypeScript Array forEach()用法及代碼示例
- TypeScript Array map()用法及代碼示例
注:本文由純淨天空篩選整理自 TypeScript - String concat()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。