Home Javascript Javascriptexamples JavaScript substring length



JavaScript substring length
Posted on: April 18, 2011 at 12:00 AM
This page discusses - JavaScript substring length

JavaScript substring length

        

This section illustrates you how to determine the length of substring in JavaScript.

You can see in the given example, we have defined a string and used the JavaScript method substring() in order to extract the substring from  the defined string. Now, we have used the JavaScript property length that allows to retrieve the length of the substring.

Here is the code:

<html>
<h2>Get the length of Substring</h2>
<script type="text/javascript">
var str = "Hello World";
var sub= str.substr(0,4);
document.writeln("The substring is :"+ sub+"<br>");
document.writeln("The length of the substring is :"+ sub.length);
</script> 
</html>

Output will be displayed as:

Download Source Code:

        

Related Tags for JavaScript substring length:


More Tutorials from this section

Ask Questions?    Discuss: JavaScript substring length  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.