I am trying to create a simple string in VB script and then I would like to create an array with substrings from the original array. Then I may change the values as necessary. For example:
Full_string = "XYZABC"
Then, say I want an array comprising of two elements from Full_string:
'NA(0) = "XY"
NA(1) = "ZA"
NA(2) = "BC"'
Then if needed I want to change as follows:
NA(0)(0) = "D"
How can I do all these in VBScript?