Thanks Ben, that worked - don't know why it didn't earlier though.

>The [brackets] around \s and " are unnecessary.  \s is a character class 
>shortcut, so you don't need the brackets.  A character class of only one 
>character is that character, so ["] is the same as ".  The construct 
>(["])(.*?)\2 is kind of silly, and could be replace more efficiently 
>with ".*?" (which will run faster and more efficiently).
>
>But, like I said in another post, the simplest (and most efficient, 
>really) regex for input tags is going to be <input.*?>.
>
>--Ben Doom
>
>Larry Lyons wrote:
>> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: http://www.houseoffusion.com/groups/RegEx/message.cfm/messageid:1100
Subscription: http://www.houseoffusion.com/groups/RegEx/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.21

Reply via email to