It is currently April 18th, 2024, 8:29 am



Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 32, 33, 34, 35, 36, 37, 38 ... 74  Next
Author Message
 Post subject: Re: Forum replacements problems.
PostPosted: November 7th, 2016, 10:19 am 

Joined: May 25th, 2016, 1:00 am
Posts: 38
before

Code:
   
[b]Forbes Mexico - Octubre 2016[/b]
[url=http://pxhst.co/avaxhome/b4/61/004061b4.jpg][img]http://pxhst.co/avaxhome/b4/61/004061b4.jpg[/img][/url]    Wow! What a picture!

[center]
[b]Forbes Mexico - Octubre 2016[/b][/center]

[center]Spanish | 172 pages | True PDF | 43 MB[/center]


[i][b][color=#cc0000]Broken link? Write me[/color][/b][/i] [b]Thank you![/b]
[url=http://nitroflare.com/view/627C971BE5DC117/Forbes_Mexico_-_Octubre_2016.pdf]Download from nitroflare.com[/url][/quote][/quote]


after

Code:
[b]Forbes.Mexico.-.Octubre.2016[/b]
[img]http://pxhst.co/avaxhome/b4/61/004061b4.jpg[/img][url=http://nitroflare.com/view/627C971BE5DC117/Forbes_Mexico_-_Octubre_2016.pdf[url]


[b]Forbes Mexico - Octubre 2016[/b]
Spanish | 172 pages | True PDF | 43 MB


I be there, but now?
Code:
[b]Forbes.Mexico.-.Octubre.2016[/b]
[img]http://pxhst.co/avaxhome/b4/61/004061b4.jpg[/img]


[b]Forbes Mexico - Octubre 2016[/b]
Spanish | 172 pages | True PDF | 43 MB

[url=http://nitroflare.com/view/627C971BE5DC117/Forbes_Mexico_-_Octubre_2016.pdf[url]


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 9th, 2016, 7:52 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12640
Location: Earth
I didn't really understood the two after examples which are completely different. Also the "url" tag is not valid in after.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 9th, 2016, 11:50 pm 

Joined: May 25th, 2016, 1:00 am
Posts: 38
I want dies

Code:
Forbes.Mexico.-.Octubre.2016
http://pxhst.co/avaxhome/b4/61/004061b4.jpg http://nitroflare.com/view/627C971BE5DC117/Forbes_Mexico_-_Octubre_2016.pdf


Forbes Mexico - Octubre 2016
Spanish | 172 pages | True PDF | 43 MB


dies is 1 Line
Code:
[strike]http://pxhst.co/avaxhome/b4/61/004061b4.jpg http://nitroflare.com/view/627C971BE5DC117/Forbes_Mexico_-_Octubre_2016.pdf[/strike]


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: November 27th, 2016, 7:01 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12640
Location: Earth
You can add "strike" tag around those links with this:

Search for:
Code:
http://pxhst.+http://nitroflare.+


Replace with:
Code:
[strike]$0[/strike]


Enable regex search.

Both links must be in the same line as in your example.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 15th, 2016, 2:03 pm 

Joined: December 15th, 2016, 2:00 pm
Posts: 5
Hello. Please tell me its is possible to remove words between [ and ].

Example:

Before
Quote:
Release name: [Playboy.com] Natasha Dedov - bla bla bla [Boobs - Huge, Butt - Large, Costume, Hair - Red, Lace, Lingerie, Sheer, Topless] [720p]


After:
Quote:
Release name: Natasha Dedov - bla bla bla [Boobs - Huge, Butt - Large, Costume, Hair - Red, Lace, Lingerie, Sheer, Topless] [720p]


Thx for your time.


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 15th, 2016, 8:12 pm 
Site Admin
User avatar

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


Replace with:
Code:
$1$3


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 26th, 2016, 11:26 pm 

Joined: December 15th, 2016, 2:00 pm
Posts: 5
I need to ask for your help again :/

Before:
Quote:
File: filename.mp4
Size: 1889145037 bytes (1.76 GiB), duration: 00:24:44, avg.bitrate: 10184 kb/s
Audio: aac, 48000 Hz, stereo (eng)
Video: h264, yuv420p, 1920x1080, 25.00 fps(r) (eng)


After:
Quote:
mp4
Size: 1889145037 bytes (1.76 GiB), duration: 00:24:44, avg.bitrate: 10184 kb/s
Audio: aac, 48000 Hz, stereo (eng)
Video: h264, yuv420p, 1920x1080, 25.00 fps(r) (eng)


Any ideas how i can do it?

Thx


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 27th, 2016, 3:17 pm 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12640
Location: Earth
I can see only the first line has changes (removed the "File: filename").

Search for:
Code:
File:.+\.(.+)


Replace with:
Code:
$1


Enable regex search.

_________________
themaPoster | themaCreator | themaManager | themaLeecher | themaRegister


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: December 29th, 2016, 10:25 pm 

Joined: December 15th, 2016, 2:00 pm
Posts: 5
Thanks :)


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: February 15th, 2017, 8:54 pm 

Joined: September 23rd, 2011, 5:39 pm
Posts: 23
Hello Freddy.

I would like to remove all words less than 3 letters from tags. What regex will be??

Thanks.


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: February 16th, 2017, 8:14 am 
Site Admin
User avatar

Joined: March 10th, 2011, 11:14 pm
Posts: 12640
Location: Earth
Search for:
Code:
\b\w{1,2}\b\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: February 16th, 2017, 5:37 pm 

Joined: September 23rd, 2011, 5:39 pm
Posts: 23
Great, working fine. Thanks Freddy :D


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: February 18th, 2017, 12:34 pm 

Joined: March 30th, 2015, 12:31 pm
Posts: 670
sorry, may be it's already answered but i could not find it out here.

before:
Code:
http://rapidgator.net/file/c68b03f28686f451a4/dssdNiUM.html


after:
Code:
{abc}


basically want all rapidgator link replace with {abc}


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: February 19th, 2017, 9:56 am 

Joined: December 30th, 2013, 3:54 pm
Posts: 319
search for
Code:
.*rapidgator.*


replace with
Code:
{abc}


Top
 Profile  
Reply with quote  
 Post subject: Re: Forum replacements problems.
PostPosted: February 19th, 2017, 10:14 am 

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


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1106 posts ]  Go to page Previous  1 ... 32, 33, 34, 35, 36, 37, 38 ... 74  Next

Who is online

Users browsing this forum: No registered users and 10 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