S
Skur
hi!
can anyone help me with solving my problem?
i want to check my string if there's such substring in it:
<div class="some_class_i_want_to_set_this_value_before_checking">
text_to_retrieve </div>
i would like to get in return text_to_retrieve. i know i have touse regular
expressions, a well known of working example for html tags is
@<(?<tag>\w*)>(?<text>.*)</\k<tag>> , but it will return only things like:
<p>ajajajaja</p>
how to solve my problem?
please help...
can anyone help me with solving my problem?
i want to check my string if there's such substring in it:
<div class="some_class_i_want_to_set_this_value_before_checking">
text_to_retrieve </div>
i would like to get in return text_to_retrieve. i know i have touse regular
expressions, a well known of working example for html tags is
@<(?<tag>\w*)>(?<text>.*)</\k<tag>> , but it will return only things like:
<p>ajajajaja</p>
how to solve my problem?
please help...