chrmarti / vscode-regex

MIT License
157 stars 33 forks source link

[Feature Request] Support C# #50

Open lonix1 opened 3 years ago

lonix1 commented 3 years ago

Please consider adding support for C# regexes, which are found in foo.cs files.

Syntax examples:

// as variables
var regex1 = "^foo$";
string regex2 = "^foo$";

// in statements
var s = Regex.Replace("foo(.*)$", "bar$1");