|
|
JavaScript substringFrom a string we can get part of the string by specifying starting and ending position of the substring. This functions is different than substr function. In substr function we used start point and length of the substring required ( not end point ). Let us try with some examples .
my_string= new String("Welcome to plus2net.com");
document.write(my_string.substring(10,15));
The output of above function is plus
Note that one blank space is included in the above output at the left side.
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
| |
| | Noel | 16-09-2012 |
|---|
| How can split an email into parts before(userID) and after (Domain) the @ sign, and then validate to see if each of these parts are valid? |
|
|
|
|
|
|