I have a 1200 line text file with information that I need in the following
format.
FIGURE>SAMEFIGU RE=NUMBER>SAMEN UMBER=CHANNELNA ME">SAMECHANNEL NAME<DELETE
I want to break it down into this format.
$figure > $figure = $number > $number = $channel ">
$channel < the rest can be deleted
my way (not a lot of experience with this sort of problem..
don't laugh)
explode (">", $exFigure);
$figure = $exFigure[0];
explode ("=", $number);
$figure = $exFigure[1];
// then chop out after the >
And so on..
Would there be a better way I could learn...?
Thanks alot in advance
Mike.
format.
FIGURE>SAMEFIGU RE=NUMBER>SAMEN UMBER=CHANNELNA ME">SAMECHANNEL NAME<DELETE
I want to break it down into this format.
$figure > $figure = $number > $number = $channel ">
$channel < the rest can be deleted
my way (not a lot of experience with this sort of problem..
don't laugh)
explode (">", $exFigure);
$figure = $exFigure[0];
explode ("=", $number);
$figure = $exFigure[1];
// then chop out after the >
And so on..
Would there be a better way I could learn...?
Thanks alot in advance
Mike.
Comment