I am in the process of getting output just like below,
Res: 10Test from Res:10 Test using Append Format.
but when tried this below code,nothing happened and i am getting as Res:10 Test
Please let me know what is wrong with Append Format in my code and more info here
dim arr
arr=Array("Res:10 Test","Res:80 Test","Res:30 Test")
Set oSB = CreateObject( "System.Text.StringBuilder" )
for each inpt in arr
Ispt=split(inpt," ")
oSB.AppendFormat_2 "{0}{1,4}",Ispt(0),Ispt(1)
Ispt=oSB.ToString()
next