remove image tags in string

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Smokey Grindel

    #1

    remove image tags in string

    I have a HTML string that I want to remove all the <IMG ....... tags
    from... any regex's out there for this? I basically just want to remove all
    the images from the HTML.. thanks!


  • Herfried K. Wagner [MVP]

    #2
    Re: remove image tags in string

    "rowe_newsgroup s" <rowe_email@yah oo.comschrieb:
    >I have a HTML string that I want to remove all the <IMG ....... tags
    >from... any regex's out there for this? I basically just want to remove
    >all
    >the images from the HTML.. thanks!
    >
    I think the Regex pattern "<img\s.*?/>" should find all occurrences if
    you use the SingleLine regex option.
    This would work in most cases, but if 'SHORTTAG YES' is used, then it will
    fail. Note that HTML is an SGML application and not XML!

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

    Comment

    Working...