博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字符串的concat方法_字符串concat()方法
阅读量:2501 次
发布时间:2019-05-11

本文共 403 字,大约阅读时间需要 1 分钟。

字符串的concat方法

Concatenates the current string with the string passed as parameter.

将当前字符串与作为参数传递的字符串连接在一起。

Example:

例:

'Flavio'.concat(' ').concat('Copes') //'Flavio Copes'

You can specify a variable number of arguments, and if you do so all those arguments will be concatenated to the original string:

您可以指定数量可变的参数,如果这样做,所有这些参数都将连接到原始字符串:

'Flavio'.concat(' ', 'Copes') //'Flavio Copes'

翻译自:

字符串的concat方法

转载地址:http://xxqgb.baihongyu.com/

你可能感兴趣的文章
模式识别 - libsvm该函数的调用方法 详细说明
查看>>
数据库启动(下一个)
查看>>
FineUI第九天---表单验证
查看>>
Unity3D 快捷键
查看>>
Springboot集成WebSocket通信全部代码,即扣即用。
查看>>
接口,lambda表达式与内部类
查看>>
【poj1009】 Edge Detection
查看>>
【spoj LCS2】 Longest Common Substring II
查看>>
去掉PowerDesigner生成SQL脚本中字段名带的引号
查看>>
win10操作系统安装oracle11g时出现不满足最低配置的操作INS13001
查看>>
中文乱码问题(页面乱码,eclipse乱码,请求响应乱码)
查看>>
extern使用方法总结!(转)
查看>>
HTTP请求过程详解
查看>>
【C#】wpf中的xmlns命名空间为什么是一个网址,代表了什么意思(转载)
查看>>
你不是迷茫,你是自制力不强
查看>>
【转载】setContentView和inflate区别
查看>>
Bootstrap栅格系统
查看>>
自然语言工程师要求
查看>>
Leetcode 452.用最少数量的箭引爆气球
查看>>
【转】Linux设备驱动之Ioctl控制
查看>>