I a JSON string that contains a Regular Expression: like - { "pattern": /[a-z0-9]+/i }
Is there any easy way to parse this in .NET and get resulting object/data-structure that I can use further?
I tried JSON.NET's JObject.Parse() method but it throws an exception.
Thanks in advance!