Suppose I download a html file with javascript in it, for example,
<html>
<body>
<script language="JavaS cript">
document.write( "Hello");
</script>
</body>
</html>
How can I translate that to pure html,
<html>
<body>
Hello
</body>
</html>
I am looking for a c++ solution.
Thanks,
qk
<html>
<body>
<script language="JavaS cript">
document.write( "Hello");
</script>
</body>
</html>
How can I translate that to pure html,
<html>
<body>
Hello
</body>
</html>
I am looking for a c++ solution.
Thanks,
qk
Comment