當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Typescript String charAt()用法及代碼示例


TypeScript中的charAt()方法用於返回字符串指定索引處的字符。字符串從左到右索引。

用法:

string.charAt( index )

參數:此方法接受如上所述和以下描述的單個參數:

  • index:它是小於字符串長度的0到1之間的整數值。

返回值:

以下示例說明了TypeScript中charAt()方法的用法方式:



範例1:

打字稿

// Original string  
var str = new String( 
    'JavaScript is object oriented language');  
  
// Fnding the character at given index   
var value = str.charAt(14);  
console.log(value); 

輸出:

o

範例2:

打字稿

// Original string  
var str = new String( 
    'JavaScript is object oriented language');  
  
// Fnding the character at given index   
console.log("str.charAt(0) is:" + str.charAt(0));  
console.log("str.charAt(1) is:" + str.charAt(1));  

輸出:

str.charAt(0) is:J
str.charAt(1) is:a

相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | String charAt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。