It is currently March 29th, 2024, 1:39 pm



Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 57, 58, 59, 60, 61, 62, 63 ... 74  Next
Author Message
 Post subject: Re: Forum replacements problems.
PostPosted: December 4th, 2020, 12:43 pm 

Joined: December 2nd, 2013, 9:36 pm
Posts: 55
i think i should do this request for leecher not thema poster.


this is a message format i use (just an example)

Code:
[img] [/image]

[b]Movie Title[/b] Titanic (1997)
[b]Resolution[/b] 1280 x 720 


etc.

the point is i want themaleecher to grab Titanic (1997) and leech it as post title.


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 4th, 2020, 12:56 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Yes, you can do that as well.

PM me URL where the post is leeched from and I will write the details via PM.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 19th, 2020, 8:16 pm 

Joined: August 17th, 2016, 8:29 pm
Posts: 242
Hello
input

Quote:
AlexLegend 20 04 03 Silvia Saige


output
Quote:
AlexLegend Silvia Saige


mean no number in title
thanks


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 19th, 2020, 9:07 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Only that format? Or remove all numbers (even when single numbers and not three in a row)?

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 20th, 2020, 9:31 pm 

Joined: August 17th, 2016, 8:29 pm
Posts: 242
remove all number keep only word


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 21st, 2020, 8:56 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Search for:
Code:
[0-9]+\s?


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: December 26th, 2020, 6:03 am 

Joined: November 3rd, 2019, 1:30 pm
Posts: 79
I need to remove some lines from post for certain board.
The message looks like that:

Code:
Format: mp4
Size: 193.85 MB
Video: avc1, 00:06:40, 4000 Kbps, 1280x720, 29.970 fps
Audio: mp4a-40-2, 157 Kbps, 48 Khz

[b]Description:[/b]
Movie title

From: studio name

Movie description


I want to get rid of From: studio name, where studio name is variable.

I tried with regex:
Serach for
Code:
^From: .*$

Replace with
Code:
empty


But there's no changes in Regex tester. Formula was checked on online regex tester and it was working fine there. Any idea?


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 26th, 2020, 8:05 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Search for:
Code:
(?m)^From:.+$\s*


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: January 19th, 2021, 10:23 pm 

Joined: August 22nd, 2015, 11:54 pm
Posts: 62
Hi,

I need to replace this:

Code:
[*]Nuevo, hasta 20 correcciones automáticas con un clic.
[*]Procese por lotes y desbloquee la imagen de los detalles.
[*]Más efectivo que el brillo tradicional.


for this

Code:
[li]Nuevo, hasta 20 correcciones automáticas con un clic.[/li]
[li]Procese por lotes y desbloquee la imagen de los detalles.[/li]
[li]Más efectivo que el brillo tradicional.[/li]


Regards.


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 20th, 2021, 7:35 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
Search for:
Code:
(?m)^\[\*\](.+)


Replace with:
Code:
[li]$1[/li]


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 22nd, 2021, 12:10 pm 

Joined: October 29th, 2020, 6:50 pm
Posts: 14
Hello, I try to make some replaced, but I don't have resultants.

Original:
Code:
[url=xxxxxxxxxxxxxxxxxxxxxxx][img]xxxxxxxxxxxxxxxxxxxxxxxxx[/img][/url]

[b]General:[/b]
Name:
Format:
Size:

[b]Book:[/b]
Title:
Author:
Language:
Year:
Subjects:
Publisher:
ISBN:
Total pages:

[b]Description:[/b]
N/A

Download from RapidGator:
HostLink

Code:

i want to show only this:

[code]
[url=xxxxxxxxxxxxxxxxxxxxxxx][img]xxxxxxxxxxxxxxxxxxxxxxxxx[/img][/url]

[b]General:[/b]
Name:
Format:
Size:

Download from RapidGator:
HostLink



Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 22nd, 2021, 12:25 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
This looks like generated with themaCreator.

You could just update your themaCreator template and remove what you don't need.

PM me if you need more help.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 22nd, 2021, 12:47 pm 

Joined: October 29th, 2020, 6:50 pm
Posts: 14
Freddy wrote:
This looks like generated with themaCreator.

You could just update your themaCreator template and remove what you don't need.

PM me if you need more help.



I know this but i want to make this only from those site not from all,


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 23rd, 2021, 11:55 am 

Joined: August 28th, 2011, 12:50 pm
Posts: 163
before

Code:
[url=https://pixhost.to/show/93/184999557_b36c03a86d44182f426963fe4eea7f20.jpg][img]https://t50.pixhost.to/thumbs/93/184999557_b36c03a86d44182f426963fe4eea7f20.jpg[/img][/url][url=https://pixhost.to/show/93/184998820_4ad815fe2ce5880894abb7e05c2e4ae0.jpg][img]https://t50.pixhost.to/thumbs/93/184998820_4ad815fe2ce5880894abb7e05c2e4ae0.jpg[/img][/url]
Teens Want To Try Anal 2 (2020)

Genre :18+ Teen, Anal, Facial
Studio : Lead Porn
Cast : Angie, Katarina Muti, Sheri Vi
Duration : 01:16:02

Format: mp4
Size: 901 MB
Video: 960  x 540


[url=https://img50.pixhost.to/images/93/184999974_teens_want_to_try_anal_2.jpg][img]https://t50.pixhost.to/thumbs/93/184999974_teens_want_to_try_anal_2.jpg[/img][/url]
[url=https://img50.pixhost.to/images/93/184999977_teens_want_to_try_anal_2.jpg][img]https://t50.pixhost.to/thumbs/93/184999977_teens_want_to_try_anal_2.jpg[/img][/url]
[url=https://img50.pixhost.to/images/93/184999981_teens_want_to_try_anal_2.jpg][img]https://t50.pixhost.to/thumbs/93/184999981_teens_want_to_try_anal_2.jpg[/img][/url]


https://filejoker.net/zp0x83164t1j/teens-want-to-try-anal-2-scene-1.540p.mp4
https://filejoker.net/nyq7ddwj3d0b/teens-want-to-try-anal-2-scene-2.540p.mp4
https://filejoker.net/fl70bgdz5mmx/teens-want-to-try-anal-2-scene-3.540p.mp4
 

<param=xfield[poster]=>
<param=xfield[pics1]=>
<param=xfield[pornstars]=>
<param=xfield[production]=>
<param=xfield[size]=>
<param=xfield[screenshot]=>
<param=xfield[screenshot1]=>
<param=xfield[screensho2]=>
<param=xfield[filejoker]=>
<param=xfield[filejoker2]=>


after

Code:
Teens Want To Try Anal 2 (2020)

Genre :18+ Teen, Anal, Facial
Studio : Lead Porn
Cast : Angie, Katarina Muti, Sheri Vi
Duration : 01:16:02

Format: mp4
Size: 901 MB
Video: 960  x 540

<param=xfield[poster]=https://t50.pixhost.to/thumbs/93/184999557_b36c03a86d44182f426963fe4eea7f20.jpg>
<param=xfield[pics1]=https://t50.pixhost.to/thumbs/93/184998820_4ad815fe2ce5880894abb7e05c2e4ae0.jpg>
<param=xfield[pornstars]=Angie, Katarina Muti, Sheri Vi>
<param=xfield[production]=Lead Porn>
<param=xfield[size]=901 MB>
<param=xfield[screenshot]=https://img50.pixhost.to/images/93/184999974_teens_want_to_try_anal_2.jpg>
<param=xfield[screenshot1]=https://img50.pixhost.to/images/93/184999977_teens_want_to_try_anal_2.jpg>
<param=xfield[screensho2]=https://img50.pixhost.to/images/93/184999981_teens_want_to_try_anal_2.jpg>
<param=xfield[filejoker]=https://filejoker.net/zp0x83164t1j/teens-want-to-try-anal-2-scene-1.540p.mp4>
<param=xfield[filejoker2]=https://filejoker.net/nyq7ddwj3d0b/teens-want-to-try-anal-2-scene-2.540p.mp4>
<param=xfield[filejoker3]=https://filejoker.net/fl70bgdz5mmx/teens-want-to-try-anal-2-scene-3.540p.mp4>


DDL site

i have more posts like that

can you tell me replacement PLEASE


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: January 23rd, 2021, 12:56 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12630
Location: Earth
@nik204

If you use themaCreator to generate the post then just add those custom params in your template. It will be much easier and makes more sense. Don't just leave them empty. You can just use needed tags to fill those custom params.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 57, 58, 59, 60, 61, 62, 63 ... 74  Next

Who is online

Users browsing this forum: No registered users and 9 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:  
cron
Theme designed by stylerbb.net © 2008
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All times are UTC