I've been working on a batch file that will split up a text file based on recurring text
For example:
<AL> 999939339393
Text1
Text2
Text3
Text4
<AL> 8484848484848
Text1
Text2
Text3
Etc.
<AL> 737373737733737
Etc
Etc
Etc
And so on.
The batch file would output a text file from the down to the next one etc
My issue is no matter how I write the batch file I can only get it to work without using the operators < >. For example if I remove the <> from the test text file and just search and split by "AL" then it works fine however when I use """" it seems to be still seeing < and > as an operator even inside quotations. Is there any way around this creating a batch file to search and split up a text file based on text with an operator each side?