Code Library
Home Submit Free Hosting Link To Us Contacts

VBScript Return a number of characters from the left or right side of a string

VBScript Return a number of characters from the left or right side of a string VBScript VBScript Return a number of characters from the left or right side of a string Download (.zip)



<html>
<body>

<script type="text/vbscript">
text="Have a nice day!"
document.write(Left(text,5))
document.write("<br>")
document.write(Right(text,5))
</script>

</body>
</html>






Tatet