M
miroslaw.rusin
Hi mates!
The challange is like this: how to replace only one element in the
whole tree to something else?
Example:
Input:
<?xml version="1.0"?>
<html>
<head></head>
<body>
<b> some<u>thing</ul> </b>
</body>
</html>
into:
<?xml version="1.0"?>
<html>
<head></head>
<body>
<strong> some<u>thing</ul> </strong>
</body>
</html>
(<b> -> <strong>) ?
Mirek
The challange is like this: how to replace only one element in the
whole tree to something else?
Example:
Input:
<?xml version="1.0"?>
<html>
<head></head>
<body>
<b> some<u>thing</ul> </b>
</body>
</html>
into:
<?xml version="1.0"?>
<html>
<head></head>
<body>
<strong> some<u>thing</ul> </strong>
</body>
</html>
(<b> -> <strong>) ?
Mirek