Is there any possibility to use Regex in .NET microframework 4.1?

I am using netduino and Quectel GSM module and I would like to parse with regex recieved sms. Does anybody knows something about this?

Upvotes: 3

Views: 110

Answers (1)

jinzai
jinzai

Reputation: 446

Add a Reference to your project -- System.Text.RegularExpressions, then add a using System.Text.RegularExpressions to your source code where you intend to use it.

Adding a reference using Visual Studio

Upvotes: 3

Related Questions