Z
zoltrix
I have a config file for our internal app. The syntax is as follows:
param1*param2*value=3
param1*param2*param3*value=4
param1*value=1
param2*value=3
etc..
What's the best way of doing this? As seen from the example above,
this lends itself to a very nice tree-based representation. So I
tried using tree:
AG but got bogged down converting it to tree, the
original idea was to first convert it to a tree, then traverse the
tree xml-tagging it along the way. Is that a good idea?
Are there better ideas? Thanks for your help.
param1*param2*value=3
param1*param2*param3*value=4
param1*value=1
param2*value=3
etc..
What's the best way of doing this? As seen from the example above,
this lends itself to a very nice tree-based representation. So I
tried using tree:
original idea was to first convert it to a tree, then traverse the
tree xml-tagging it along the way. Is that a good idea?
Are there better ideas? Thanks for your help.