Asp.Net 5 (Core 1.0) Class Library System.Text.RegularExpression

3

How to use the System.Text.RegularExpression namespace in Asp.Net 5, I'm having a project and I was upgrading it to ASP.NET 5, my problem was that I can not use regular expressions in the same en as I can reference the namespace in issue.

    
asked by anonymous 05.03.2016 / 15:54

1 answer

1

I found this issue in the beta issues yet and was resolved by adding the dependency "System.Text.RegularExpressions" in project.json.

From what I understand, Regex is now an isolated System.Text library

Source: link

    
22.09.2016 / 18:19