Reputation: 302
Can RegEx and Match be used in a Windows Form? I know they work in the console applications...
I'm trying to convert a Console app to a Windows Form Application.
Upvotes: 0
Views: 698
Reputation: 61802
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)!
Upvotes: 5
Reputation: 4330
Yes, most .NET library functions can be used in any type of application.
Upvotes: 1