Javascript字符串 – substr()方法

Javascript字符串 – substr()方法

说明

此方法返回一个字符串中指定位置开始、指定数量的字符。

语法

使用substr()的语法如下 –

string.substr(start[, length]);

参数详情

  • 起点 - 提取字符的起始位置(0到字符串的长度减1之间的整数)。

  • 长度 - 要提取的字符数。

注意 - 如果起点为负数,则substr将其作为从字符串末尾的字符索引。

返回值

substr()方法根据给定的参数返回新的子字符串。

例子

试试下面的例子。

<html>
   <head>
      <title>JavaScript String substr() Method</title>
   </head>

   <body>   
      <script type = "text/javascript">
         var str = "Apples are round, and apples are juicy.";         
         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): y.
(1): pples are round, and apples are juicy.
(-20, 2): nd
(20, 2): d

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

学习JavaScript