JavaScript字符串 – charAt()方法

JavaScript字符串 – charAt()方法

描述

charAt()是一种方法,它从指定的索引返回字符。

字符串中的字符从左到右进行索引。第一个字符的索引为0,字符串中最后一个字符的索引,即 stringName, 为stringName.length-1。

语法

使用以下语法查找特定索引处的字符。

string.charAt(index);

参数详情

index − 介于0到字符串长度减1的整数之间。

返回值

返回指定索引处的字符。

示例

尝试以下示例。

<html>
   <head>
      <title>JavaScript字符串charAt()方法</title>
   </head>

   <body>  
      <script type = "text/javascript">
         var str = new String( "This is string" );
         document.writeln("str.charAt(0)是:" + str.charAt(0)); 
         document.writeln("<br />str.charAt(1)是:" + str.charAt(1)); 
         document.writeln("<br />str.charAt(2)是:" + str.charAt(2)); 
         document.writeln("<br />str.charAt(3)是:" + str.charAt(3)); 
         document.writeln("<br />str.charAt(4)是:" + str.charAt(4)); 
         document.writeln("<br />str.charAt(5)是:" + str.charAt(5)); 
      </script>      
   </body>
</html>

输出

str.charAt(0)是:T
str.charAt(1)是:h
str.charAt(2)是:i
str.charAt(3)是:s
str.charAt(4)是:
str.charAt(5)是:i

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程