欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简介JavaScript中substring()方法的使用

程序员文章站 2022-06-01 13:09:03
 该方法返回一个string对象的一个子集。 语法 string.substring(indexa, [indexb]) 下面是参数的详...

 该方法返回一个string对象的一个子集。
语法

string.substring(indexa, [indexb])

下面是参数的详细信息:

  •     indexa : 介于0和1小于字符串的长度的整数。
  •     indexb : (可选)介于0和字符串的长度的整数。

返回值:

  •     substring方法返回基于给定参数的新的子字符串。

例子:

<html>
<head>
<title>javascript string substring() method</title>
</head>
<body>
<script type="text/javascript">

var str = "apples are round, and apples are juicy.";

document.write("(1,2): "  + str.substring(1,2));
document.write("<br />(0,10): "  + str.substring(0, 10));
document.write("<br />(5): "   + str.substring(5));
</script>
</body>
</html>

这将产生以下结果:

(1,2): p
(0,10): apples are
(5): s are round, and apples are juicy.