hi.
i'm trying to convert a value from an array to a value from another array based on the index
ex:
string[] abc = {"a", "b", "c"};
string[] xyz = {"1", "2", "3"};
so let's say a have a text "aabbcc" .. and where the items from string abc are found are replaced with the items from string xyz based on index.. or something
output shoudl be "112233" . any ideas?
i'm trying somehow to connect the two string :|