subtitle lines
-
How do I remove multiple subtitle lines like
Subtitle by:\N(MFMS)d
^.*Subtitle* ``` Is the expression I tried but it doesn't remove everything
-
@kracovwolf said in subtitle lines:
^.Subtitle
For your regex, you were very close. If you look at the
*
at the end, it refers to thee
character whereas at the front you have it associated with the.
which is special and means most, if not all, characters. So just add the.
before the last*
and it should grab the whole line. In fact the second*
could be a+
IF there are always characters behind the word subtitle.Terry