JavaScript中的substr()方法使用详解
这个方法在一个字符串返回字符开始于通过指定的字符数的指定位置。
语法
string.substr(start[,length]);
下面是参数的详细信息:
- start:在位置开始提取字符(一个介于0和整数小于字符串的长度)
- length:要用来提取的字符数
注意:如果start是负数,substr使用它作为从字符串的末尾字符索引
返回值:
- substr方法返回基于给定参数的新的子字符串
例子:
<html> <head> <title>JavaScriptStringsubstr()Method</title> </head> <body> <scripttype="text/javascript"> varstr="Applesareround,andapplesarejuicy."; document.write("(1,2):"+str.substr(1,2)); document.write("<br/>(-2,2):"+str.substr(-2,2)); document.write("<br/>(1):"+str.substr(1)); document.write("<br/>(-20,2):"+str.substr(-20,2)); document.write("<br/>(20,2):"+str.substr(20,2)); </script> </body> </html>
这将产生以下结果:
(1,2):pp (-2,2):Ap (1):pplesareround,andapplesarejuicy. (-20,2):Ap (20,2):d