在 VBScript 中组合单词

To combine a word in VBScript

Dim a // consider a variable as
a= Ajay Kumar Holla

and i would like to have a output as "AjayKumarHolla"

1) I would like to remove the space and join the word together.

2) 代码在 VB 脚本中,我想在 VB 脚本中得到我的答案。

这是您要找的吗? a = Replace(a, " ", "")