Great that worked perferctly. Thanks Michael
><img[^>]+([a-z0-9_]\.(?:jpg|jpeg|gif|png))[^>]*> > ><img - start of the match >[^>]+ - everything until a closing bracket >[a-z0-9_]\.(?:jpg|jpeg|gif|png) - any number of alphanumeric characters or >an underscore followed by a period followed by a valid image extension >[^>]*> - any number of characters until the closing bracket > >The match will be stored in \1 > >It's not perfect but it works. > >On 6/15/07, Jide Aliu <[EMAIL PROTECTED]> wrote: >> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Create Web Applications With ColdFusion MX7 & Flex 2. Build powerful, scalable RIAs. Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS Archive: http://www.houseoffusion.com/groups/RegEx/message.cfm/messageid:1044 Subscription: http://www.houseoffusion.com/groups/RegEx/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.21
