Hi!
This is my first post.I have two arrays,one contains keys,as in @Arrayone = ('A','B','C','D') and second values @Arraytwo = ('1','2','3','4').I want to take values of first array as keys and that of second as values and create a hash %hash = ('A' -> '1', 'B' ->'2',.....).How can I do it?
These are big arrays and not as simple as I have shown.
Please reply!!