I'm trying to normalize text I got from my website which is using Woocommerce cms. What kind of string is this:
products":[{"title":"INTERMEC PC43T USB Barkod Yaz\u0131c\u0131","id":369,"created_at":"2016-01-24T02:26:13Z","updated_at":"2016-06-13T09:26:04Z","type":"simple","status":"publish","downloadable":false,"virtual":false,"sku":"","price":"239","regular_price":"239","sale_price":null,"price_html":"$239,00</span>","taxable":true,"tax_status":"taxable","tax_class":"","managing_stock":false,"stock_quantity":null,"in_stock":true,"backorders_allowed":false,...
I couldn't pull the values one by one or normalize this string. I've found many things for splitting strings however they didn't work. For example I tried:
Dim product As String = wac.GetAllProducts() ' Get data from WoocommerceApiClient
product.ToArray()
Dim normalized As String() = Split(product, ",", , CompareMethod.Text)
Console.WriteLine(normalized)
... and
Dim normalized As String() = Split(product, """", , CompareMethod.Text)
I got an output something like 0N1GlcZDZCFbQXa5w3GZlCSG3CNbbgxYHZzbNRiZG6k= System.String[]
How can I normalize these strings? I'll also need to get parts (properties and values) of it.