http://qs1969.pair.com?node_id=543824

gasho has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks, I have two arrays that I want to combine into HASH. Problem is there are multiple values per key. How can I combine the two arrays into HASH? Thanks a lot
@Object = qw(FolderObject); @Property = qw(FolderProperty1 FolderProperty2 FolderProperty3); %O_P #Desired Print output #FolderObject ==> FolderProperty1 FolderProperty2 FolderProperty3