I have a big file contains many lines in the following format,
<SomeString1>Key1</SomeString>
<SomeString2>Key2</SomeString>
<SomeString3>Key3</SomeString>
...
I want to remove the tags, and the output should look like,
 Key1
 Key2
 Key3
 ...
Algorithmically, I should write something like:
For all lines:
   Remove all string before character `>`
   Remove all string after character `</`
 
     
     
    