I have an xml file of following form
<input>
<node1>No Update<node1>
<node2>No Update<node2>
<node3>No Update<node3>
<node4>Data<node4>
<input>
My requirement is to update the values of those nodes which has data 'No Update' into empty string, so that the desired output will be
<input>
<node1><node1>
<node2><node2>
<node3><node3>
<node4>Data<node4>
<input>
How can I achieve it using xslt, can somebody help please.