I have an input string/text like this:
<span id="salutation">
Mister
</span><div class="c"></div>
With which pattern can I get the string Mister?
This pattern:
string pattern = "<span id=\"salutation\"> (.*) </span>";
have no success for me.