On 16 Aug 2011, at 11:05 AM, jefferis wrote:

> I am trying to replace  in a form field the results for the input
> areas.  So for example say I want to replace
> name="VariableCharacters"  with hashes to make it
> #VariableCharacters#  removing name= and quotes
> in multiple fields like:
> <input type="text" name="City" id="City" />

I'm not completely clear on what you mean but is this what you intend?

Search:
        name="(.*?)"
(Match 'name="', match and save any characters up to the next '"', match the 
closing '"')

Replace
        #\1#
('#', the matched-and-saved characters, '#')

        — F

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem, 
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>

Reply via email to