hello all,
i'd like to make the following operation on hash:
updon reading the following string:
i'd like to insert it to hash according to it's hierarchy:
how should i do it ?
thanks,
i'd like to make the following operation on hash:
updon reading the following string:
Code:
module[x].sub-module[y].sub2-module[z] = 123123 module[x].sub-module[y].sub2-module[z] = 112222 module[x].sub-module[y].sub2-module[t] = 123123
i'd like to insert it to hash according to it's hierarchy:
Code:
hash --> mudule[x] --> sub_mudule[y] --> sub2_mudule[z] --> 123123 hash --> mudule[x] --> sub_mudule[y] --> sub2_mudule[z] --> 112222 hash --> mudule[x] --> sub_mudule[y] --> sub2_mudule[t] --> 123123
thanks,
Comment