Usually I have the following situation: There is a PONO class with a list of 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 a tool, preferably Notepad ++ or VS-plugin, for outputting regular expression output to another file?
For example: Find: "public string (. *) $" Results:
UserName Password Email Title
in the new file.
source share