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:
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.
Ask Questions? Discuss: JavaScript substring length
Post your Comment