I'm converting my ASP.NET MVC application to Core! One of my problem is converting 'Url.Action(MVC.Account.ResetPasswordCode())' to 'Url.Action("ResetPasswordCode","Account")'. I need to find all 'MVC.Foo.Bar()' or 'MVC.Foo.Bar.Baz()' matches by regular expressions.
I have tried this patterns in regex.
"(MVC.)(.*?)(\\(\\))"
But result is wrong.
Thanks.