I have long lines with information in a file. I need help to be able to search on specific information and extract only that part of the line.
The script need to work through a batch file, but I don't know if batch is the optimal language for this task.
Info.txt:
Time=20130101|Info=ok|Hello=1234321|Result=sunnyweather|Numbers=cow|File=hello.txt....
Time=20130532|Info=ok|Hello=78654321|Result=badweather|Numbers=horse|File=one.wav....
So I need to be able to extract for example the "Result=..." and export to another file.
Which scripting language would you propose and how?
Thanks on beforehand! :)