When using R# structural find/replace, is it then possible to alter/modify the output of a token?
e.g. if I capture an identifier, can I then reformat this using regex in the output? I'd like to transform this:
[Fact]
public void SomeMethodName()
with:
[Fact(DisplayName = "Some method name"]
public void SomeMethodName()
Possible?