It is currently March 28th, 2024, 11:07 am



Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 64, 65, 66, 67, 68, 69, 70 ... 74  Next
Author Message
 Post subject: Re: Forum replacements problems.
PostPosted: October 9th, 2021, 7:21 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
thank you


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 4th, 2021, 9:04 am 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
i need thi Freddy

After
Code:
[spoiler][hide]
various content and 2 or 3 links Urls...
Urls..
[/hide][/spoiler]


Before
leave empty


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 4th, 2021, 9:26 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
I guess you mixed up the before and after.

Search for:
Code:
(?is)\[spoiler\]\[hide\].+?\[/hide\]\[/spoiler\]


Replace with:
Code:
(leave empty)


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 4th, 2021, 11:39 am 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
work perfect bro thx


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 7th, 2021, 10:42 am 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
Its possible this

After
Code:
[b]Easybytez - Rapidgator[/b]
[code]https://filecrypt.cc.....[/code]
[code]https://www.keeplinks.org.....[/code]
blank line


Before
Code:
[b]Easybytez - Rapidgator[/b]




I have one second question too, its possible detect the LAST TAG CENTER
Code:
[/center]
of one article and replace it with with something else that i need add?


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 7th, 2021, 8:41 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Yes, you can do the center thing, but would need "before" and "after" example.

For the first:

Search for:
Code:
(?si)(\[b\]Easybytez - Rapidgator\[/b\]).+\[code\].+?keeplinks.+?\[/code\]\s*


Replace with:
Code:
$1\n


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 18th, 2021, 6:32 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
please note there could have triple episode like S02E01E02E03
input:
Code:
Worst.to.First.S02E07E08.Katharine.and.Darius.720p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1022.7 MiB
Worst.to.First.S02E07E08E09.Katharine.and.Darius.1080p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1022.7 MiB
Worst.to.First.S02E08.Jodene.and.Greg.720p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1.004 GiB


Output:
Code:
Worst.to.First.S02E07E08.720p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1022.7 MiB
Worst.to.First.S02E07E08E09.1080p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1022.7 MiB
Worst.to.First.S02E08.720p.WEB-DL.DDP5.1.H.264-squalor.mkv ~ 1.004 GiB


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 18th, 2021, 8:30 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
(S[0-9]+.*E[0-9]+).+?(720|1080)


Replace with:
Code:
$1.$2


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: IMDB link for DLE or WP
PostPosted: December 2nd, 2021, 5:23 pm 

Joined: February 20th, 2015, 5:01 pm
Posts: 29
can TP auto change or replace from
Code:
 IMDB link to clickable link link like this

[b]From[/b]
[code]https://www.imdb.com/title/tt11833670/


To
IMDB

for dle and WP sites


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 2nd, 2021, 5:41 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Add replacement for needed sites:

Search for:
Code:
https?://.*?imdb\.com.+


Replace with:
Code:
[url=$0]IMDB[/url]


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 9th, 2022, 7:28 pm 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
ITs possibile make this in title?

in one site i need to have for every title i write and the end of it one word look example


AFTER
Code:
TOPIC TITLE


BEFORE
Code:
TOPIC TITLE - (Italian)


for every topic title i need add the -> - (Italian)

its possible do this replacement in title?


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 13th, 2022, 8:26 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Search for:
Code:
$


Replace with:
Code:
 - (Italian)


Enable regex search.

Add under "Subject" replacements.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 13th, 2022, 7:48 pm 

Joined: August 9th, 2017, 12:37 pm
Posts: 80
sorry but this will create the title in this was yes?

TOPIC TITLE - (Italian)

right?

i make you one example

Before
Code:
Rambo (2000)


After
Code:
Rambo (2000) - (Italian)


this i want for every TOPIC title that i will create, i need add at the end of topic title the words -> - (Italian)


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 13th, 2022, 8:24 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12629
Location: Earth
Yes, your example was the same before.

Just add it under "Subject" replacements to affect only the subject / title.

You can make a test post here if needed: viewforum.php?f=17

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 29th, 2022, 4:18 am 

Joined: March 30th, 2015, 12:31 pm
Posts: 667
input
Code:
[imdb=tt13309978]

[b]Download From RapidGator[/b]

[code]
https://rapidgator.net/file/ffsddasd2.0.x264-EVO.rar
[/code]



remove everything and keep only the imdb bbcode:
Code:
[imdb=tt13309978]


Last edited by Crackpot on January 29th, 2022, 12:40 pm, edited 1 time in total.

Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 64, 65, 66, 67, 68, 69, 70 ... 74  Next

Who is online

Users browsing this forum: No registered users and 18 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Theme designed by stylerbb.net © 2008
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All times are UTC