kjxavier

New Member
Joined
Aug 11, 2011
Messages
21
I have a big list of Classified websites placed in a Column eg:

http://www.classifieds.patientsville.com/publish-a-new-ad.htm/
http://www.classifieds.übertrainiert.de/index.php/
http://www.classifieds.sunsim.in/
etc
etc.....

And i want is to remove the word including . between two period (.) after the www
i.e.: i need a answer like this after a Find and Replace

http://www.patientsville.com/publish-a-new-ad.htm/
http://www.übertrainiert.de/index.php/
http://www.sunsim.in/

Is there anyway i can get a result like that!

i appreciate you fast reply.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
As you are only replacing 'classifieds.' with nothing. This will do. But if you expect classifields to appear anywhere else you will need a different find and replace.


Cells.Replace What:="classifieds.", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
 
Upvote 0
Is it the first word after 'www.' and before the next '.' that you want removed?
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,598
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top