Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4373
    topic7
    Member

    is it possible only to delete html tag in html page ?
    namely strip off html tag not body text ?

    #4374
    webern
    Member

    Try this macro:

    document.selection.Replace( "<.*?>", "", eeFindReplaceRegExp | eeReplaceAll );
    document.selection.Replace( "&.*?;", "", eeFindReplaceRegExp | eeReplaceAll );
    Quit();

    Also you may assign a shortcut to run it.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.