Match and RegEx in C# form?
Can RegEx and Match be used in开发者_如何学Python a Windows Form? I know they work in the console applications...
I'm trying to convert a Console app to a Windows Form Application.
RegEx
can be used in anything that can access the .Net Framework. WinForms, Console, WPF, code-behind in an ASP.Net website, etc.
You could even create an instance of the RegEx
class in ColdFusion using .Net integration (crazy, I know)!
Yes, most .NET library functions can be used in any type of application.
精彩评论