Sto importando alcuni dati da un altro strumento di test/bug in tfs, e vorrei convertire la sua descrizione, che è in HTML semplice, quindi una semplice stringa, dove viene preservato il 'layout' dell'HTML.Renderizza o converti Html in testo "formattato" (.NET)
Ad esempio:
<body>
<ol>
<li>Log on with user Acme & Co.</li>
<li>Navigate to the details tab</li>
<li>Check the official name</li>
</ol>
<br>
<br>
Expected Result:<br>
official name is filled in<br>
<br>
Actual Result:<br>
The &-sign is not shown correctly<br>
See attachement.
</body>
diventerebbe testo con a capo inseriti e HTML-entità tradotti come:
1. Log on with user Acme & Co. 2. Navigate to the details tab 3. Check the official name Expected Result: official name is filled in Actual Result: The &-sign is not shown correctly See attachment
posso attualmente sostituire alcuni tag con a capo con una regex e striscia il resto , ma sostituire le entità HTML e cose come <ol>
e <ul>
sembrava come se stessi reinventando qualcosa (browser?). Quindi mi stavo chiedendo se qualcuno ha fatto questo prima di me. Non riesco a trovarlo utilizzando Google.