I'm a new customer to Blumentals software, and I'm very pleased with the functionality and features of Rapid PHP. I do have one question however, which pertains to the Search and Replace function. I understand how to Search for a regular expression, but how do you Replace with a regular expression?
For instance, I'm trying to convert every instance of
Code: Select all
function someFunction(arguments) {
Code: Select all
function someFunction(arguments)
{
By way of regular expressions, I can match every case with
Code: Select all
^function ([a-zA-Z0-9][^>]+)\(([a-zA-Z0-9][^>]+)\) \{$
Any and all help would be most appreciated.
