I have this html string:
<h1>MDPI Open Access Information and Policy</h1>
<div class="info-intro">All articles published by MDPI are made available under an open access license worldwide immediately. This means:
<ul>
And i would like to store this in a string:
String abaut="<h1>MDPI Open Access Information and Policy</h1>
<div class="info-intro">All articles published by MDPI are made available under an open access license worldwide immediately. This means:
<ul>";
And i am gotting some problems: the string is not accepted because of some " inside of the string and some new lines. How can I do this differently?
i am gotting some problemsVery good problem description!