String.charAt() 傳回字串中索引值位置的字元

javascript 中的 String.charAt() 是用來傳回字串中索引值位置的字元。

String.charAt()的語法:

string.charAt(index)

index:索引值,範圍為0到string.length - 1,超出範圍會傳回空字串。

String.charAt()的範例:

<script type="text/javascript">
 var mystr=new String("String");
 document.writeln(mystr.charAt(0));
 document.writeln(mystr.charAt(5));
 </script>

String.charAt()的範例輸出:

S g

關於字串物件的其他方法可以參考部落格內的另一篇文章:字串(String)物件

smiley如果你覺得寫的還不錯,請給我一個讚喔!!smiley

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章: