VBA - Join 函数
一个函数,返回一个字符串,该字符串包含数组中指定数量的子字符串。 这与分割方法的功能完全相反。
语法
Join(List[,delimiter])
参数说明
List − 必需的参数。 包含要连接的子字符串的数组。
Delimiter − 可选参数。 返回字符串时用作分隔符的字符。 默认分隔符是空格。
示例
添加一个按钮并添加以下功能。
Private Sub Constant_demo_Click() ' Join using spaces a = array("Red","Blue","Yellow") b = join(a) msgbox("The value of b " & " is :" & b) ' Join using $ b = join(a,"$") msgbox("The Join result after using delimiter is : " & b) End Sub
当您执行上述函数时,它会产生以下输出。
The value of b is :Red Blue Yellow The Join result after using delimiter is : Red$Blue$Yellow