V
vin b
given a file such as
<parent name="john">
<child>a</child>
<child>b</child>
<child>c</child>
</parent>
<parent name="james">
<child>a</child>
</parent>
<parent name="jim">
<child>d</child>
<child>a</child>
</parent>
, how would i split it, using c++ to 3 files corresponding to the
<parent....> </parent> segments?
thanks, vin
<parent name="john">
<child>a</child>
<child>b</child>
<child>c</child>
</parent>
<parent name="james">
<child>a</child>
</parent>
<parent name="jim">
<child>d</child>
<child>a</child>
</parent>
, how would i split it, using c++ to 3 files corresponding to the
<parent....> </parent> segments?
thanks, vin