Extracting Specific Text

jdh3

New Member
Joined
Aug 11, 2011
Messages
3
Hi there.

So I have a column full of cells that look like this.

Beautifully muted shimmering trim tied in a doubled bow adorn a 3/8" matching headband. Colors: Rose, Black, Gold (carrot)img src="/PDGimages/Women-Shimmer-Bow-Swatch.jpg" alt="swatch" /(carrot)

What I need to do is extract the (carrot)img src="... /(carrot) from each paragraph and move it to another column. So A1 would have the entire paragraph, and B1 would only have the "img src" code from A1...and so on.

Does someone here have a formula I can use?

Much thanks for your help.

Jamie
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
If there's only one tag per line, you can do something like

=MID(A1, FIND("<", A1)+1, FIND(">", A1)-FIND("<", A1)-1)
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,681
Members
452,937
Latest member
Bhg1984

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