need to edit text
-
#EXTINF:0, 0 - SLO 1 SD
#EXTTV:Mpeg2;slv;
udp://@232.2.1.1:5002#EXTINF:0, 2 - SLO 2 SD
#EXTTV:Mpeg2;slv;
udp://@232.2.1.2:5002I need to edit this TV playlist, to remove everything behind #EXTINF:0, and leave only channel names
-
Based on my guess as to what you meant,
FIND =(^#EXTINF:0,).*$
REPLACE =$1
SEARCH MODE = Regular ExpressionThat gives the result,
#EXTINF:0, #EXTTV:Mpeg2;slv; udp://@232.2.1.1:5002 #EXTINF:0, #EXTTV:Mpeg2;slv; udp://@232.2.1.2:5002Because that’s my guess as to what you meant by “remove everything behind
#EXTINFO:0,”If that isn’t what you wanted, you will want to give both “before” and “after” data (“only channel names” has no meaning to someone who doesn’t know the format)
----
Useful References