Skip to main content
June 13, 2009
Question

Find Replace <em>copy</em>

  • June 13, 2009
  • 1 reply
  • 351 views

I am merging data from a csv. Some of the text boxes are for descriptions. In some of these descriptions are html tags like <em> and <b>. I am not familiar with scripting at all... But, is there a way to find <em> and </em> and replace anything in between them to italic, and remove the tags? Please help... need to apply this on Monday.

thanks in advance.

CS3 on OS X

This topic has been closed for replies.

1 reply

Peter Kahrel
Community Expert
Community Expert
June 14, 2009

You don't need a script. In the Find/Change dialog, GREP tag:

Find what: (?s)<em>(.+?)</em>

Change to: $1

Peter