Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To replace using regular expressions, check the Use check box and select Regular Expressions. Next, lets assume you want to find and replace all methods that start with Get and end with Result (E.G., GetApplicationResult) and remove the Get keyword. We'd start by building our regex that captures all letters between the characters Get and Result. In the Find What input field we would enter Get(\w+)Result.  Finally, in the Replace With input field we would enter in $1Result and press the Replace All button. All occurrences of would not will now be updated (E.G., ApplicationResult).

...