Hello,
I am trying to create a navigation system which parses a text file that describes the structure using tabs at the beginning of each line.
I don't understand how I can use perl to identify when there is one extra tab, to add another dimension to the hash, and when there one less tab, to go back to the previous dimension. The dimension of the text file is limitless.
I was hoping somebody could provide me with something to get me started as this is currently beyond me and seems far more complex than I originally thought.
Thank you,
Chris
I am trying to create a navigation system which parses a text file that describes the structure using tabs at the beginning of each line.
I don't understand how I can use perl to identify when there is one extra tab, to add another dimension to the hash, and when there one less tab, to go back to the previous dimension. The dimension of the text file is limitless.
I was hoping somebody could provide me with something to get me started as this is currently beyond me and seems far more complex than I originally thought.
Code:
______________________________________
#Input file...
One
One
Two
One
Two
Three
Two
One
Three
Four
One
One
Two
Three
Two
Three
Four
One
Two
Three
Five
Six
Five
One
Two
______________________________________
#Expected hash [first 10 lines]...
L1 - $hash{'One'}
L2 - $hash{'One'}{'One'}
L3 - $hash{'One'}{'Two'}
L4 - $hash{'One'}{'Two'}{'One'}
L5 - $hash{'One'}{'Two'}{'Two'}
L6 - $hash{'One'}{'Three'}
L7 - $hash{'Two'}
L8 - $hash{'Two'}{'One'}
L9 - $hash{'Three'}
L10 - $hash{'Four'}
______________________________________
Thank you,
Chris