1、描述
此方法返回从指定位置开始,通过指定数量的字符的字符串中的字符。
2、语法
使用substr()的语法如下:
string.substr(start[, length]);
3、参数
- start:要启动截取字符的位置(0到0之间的整数,小于字符串的长度)。
- length:要截取的字符数。
注意:如果start为负,substr将其用作字符串末尾的字符索引。
4、返回值
substr()
方法基于给定参数截取返回新子字符串。
5、使用示例
<html> <head> <title>JavaScript String substr() Method</title> </head> <body> <script type = "text/javascript"> var str = "https://www.cjavapy.com c java python code"; 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>
6、输出
(1,2): tt (-2,2): de (1): ttps://www.cjavapy.com c java python code (-20, 2): m (20, 2): co