I have this string:
row = <line><a>111</a><b>222</b><c>333</c></line><line><a>444</a><b></b><c>555</c></line>
If <b>
has no value I need all the line to be deleted from my string in this case:
<line><a>444</a><b></b><c>555</c></line>
Should I split my row to an array and check each line than concat it to a new string without the lines that hold an empty b ? Is there an easy/ smart way?