mike
mike

Reputation: 11

VS2010 Find and Replace

I need help using regular expressions using Find and Replace in VS2010. I want to Find request("somevar") and replace it with html_encode(request("somevar"))

somevar will be a different for each request("")

Upvotes: 1

Views: 1128

Answers (1)

SLaks
SLaks

Reputation: 888213

Replace request({:q}) with html_encode(request(\1)).

Upvotes: 3

Related Questions