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


Processing String.charAt()用法及代碼示例


Processing, 類String中的charAt()用法介紹。

用法

  • str.charAt(index)

參數

  • str 字符串:任何字符串類型的變量
  • index int:字符的索引

返回

  • char

說明

返回指定索引處的字符。索引的範圍從 0 到字符串的長度減 1。序列的第一個字符在索引 0 處,下一個字符在索引 1 處,依此類推。

例子

String str = "CCCP";
char c1 = str.charAt(0);
char c2 = str.charAt(1);
char c3 = str.charAt(str.length()-1);
println(c1 + ":" + c2 + ":" + c3);  // Prints "C:C:P"

相關用法


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