String substr() and substring() : String : Language Basics JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Language Basics » String »

 

String substr() and substring()



/*

substr() returns a part of a string. substr(2,6) return from the second character (start at 0) and 6 long.
substring() returns a part of a string. substring(2,6) returns all characters from the second character (start at 0) and up to, but not including, the sixth character.

*/

<html>
<body>

<script type="text/javascript">
    var str="JavaScript is great!"
    document.write(str.substr(2,6))
    document.write("<br><br>")
    document.write(str.substring(2,6))
</script>

</body>
</html>


           
       



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Language Basics
» String