I want to remove the timecode from an .srt file so I can just copy and paste the text into a document. Is there a way to achieve this without manually deleting each line?
S3 4.1.1
I'm going to provide a suggestion, but it's not an Android app.
You can try subeditnet:
A simple tool to add or remove time to a SRT subtitle file. I developed this in my spare time, so don't expect it to be completely bug free. Please always BACKUP your .srt file ;)
You will need Microsoft .NET Framework 3.5 to execute it on older Operating Systems.
Or via Linux command (not tested):
$ dos2unix subtitles.srt
$ sed -r '/^[0-9]+$/{N;d}' subtitles.srt > outfile
As explained it the comments to the question, and indicated by geffchang's answer, what you need for that is an editor supporting regular expression search and replace. An example for such is Jota+ Text Editor, supporting that for Android 2.2 onwards.
To learn more about Regular Expressions, see this Wikipedia article, which also provides additional links. To teach them would go beyond the scope of this site, but the examples given might already work out for you.
^is start of line,$is end of line, and[0-9]+means "one or more of the characters from 0 to 9"./is the delimiter, anddsays to delete. For the curly braces and the N you need to ask geffchang, I never saw that notation. – Izzy Aug 29 '13 at 06:02