I want to parse following string into XML using C# -


  & lt; html & gt; & Lt; फ़ॉन्ट रंग = # एफएफ 0000 & gt; गौरांग & lt; / font & gt; & Lt; फ़ॉन्ट रंग = # 00FF00 & gt; भावेश & lt; / font & gt; & Lt; फ़ॉन्ट रंग = # एफएफ 20000 & gt; भूपेश & lt; / font & gt; & Lt; फ़ॉन्ट रंग = # एफएफ 20000 & gt; एडीटीया & lt; / font & gt; & Lt; / html & gt;   

मैं उपरोक्त स्ट्रिंग को XML में सी # में पार्स करना चाहता हूँ। जब मैं कोशिश करता हूं कि त्रुटि देता है जैसे कि '#' एक अनपेक्षित टोकन है उम्मीद की गई टोकन '' '' या '' '।

यह XML के बजाय एक html प्रतीत होता है , तो

  var doc = new HtmlAgilityPack.HtmlDocument (); doc.Load (filename); var colors = doc.DocumentNode.Descendants ("font") का उपयोग कर रहा है। ToDictionary (e = & gt; ई। इनरटेक्स्ट, ई = & gt; ई। विशेषता ["रंग"]। मान); foreach (रंगों में विविध रंग) {Console.WriteLine ("{0}: {1}", रंग .की, रंग। मूल्य) ;}    

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -