join all the array values without using join function?



join all the array values without using join function?..

Answer / cnu_thatavarthi

Ans:
Option Explicit
Dim strValue, arrValue,iCount

arrValue = Array("Srinivasulu","Thatavarthi")

For iCount = 0 To UBound(arrValue)

strValue =strValue&" "& arrValue(iCount)

Next

MsgBox strValue

'Actual Output:
---------------------------

---------------------------
Srinivasulu Thatavarthi
---------------------------
OK
---------------------------

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More VB Script Interview Questions

Explain about vb script?

0 Answers  


Join the multiple array with out using JOIN function

1 Answers  


How will you get a combined string from array of string in vbscript?

0 Answers  


How can the spaces from the string be removed?

0 Answers  


why do u choose to go for testing why cant for devoloping

0 Answers  






How to write functions and sub in vb script?

0 Answers  


What are the data types supported by vbscript?

0 Answers  


Can automation testing find ssame no. of bugs what we can find by manual testing?

0 Answers  


Mention when to use function procedures and what are its characteristics?

0 Answers  


please can you help me to get a code of flames using a visual basic 6

0 Answers  


Write a program to display the numbers in the below format using for loops? 1 2 3 4 5 6 7 8 9 10 11 12 and Write a program to display the numbers in the below format using for loops. 1 2 3 4 5 6 7 8 9 10

2 Answers  


What are the uses of vb script?

0 Answers  


Categories