Usually I have the following situation: There is a PONO class with list of the properties.
public string UserName
{
get { return this.userName; }
set { if (this.userName != value) { SetDirty(); this.userName = value; } }
}
public string Password
{
get { return this.password; }
set { if (this.password != value) { SetDirty(); this.password = value; } }
}
public string Email
{
get { return this.email; }
set { if (this.email != value) { SetDirty(); this.email = value; } }
}
public string Title
{
get { return this.title; }
set { if (this.title != value) { SetDirty(); this.title = value; } }
}
Is there are tool, preferably Notepad++ or VS plugin, to extract the regex output into another file?
For example: Find: "public string (.*)$" results:
UserName
Password
Email
Title
in a new file.