함수 CharAt()

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:32 판 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))

1 개요

charAt
characterAtIndex
  • Returns character at index in the string.
  • Equivalent: See substring of length 1 character.

2 ALGOL 68

"Hello, World"[2];         // 'e'

3 C++

#include <iostream>
using namespace std;
int main() {
	string s = "World";
	cout << s.at(0) << endl; // W
	cout << s.at(1) << endl; // o
	cout << s.at(2) << endl; // r
}

4 C#

string str = "Hello, World";
char ch = str[1];
// 'e'

5 Excel

=MID("hello",1,1)
// h
=MID("hello",2,1)
// e
=MID("hello",3,1)
// l

6 Java

String str = "Hello, World";
str.charAt(2);  // 'l'

7 JavaScript

var str = "Hello, World";
str.charAt(2);  // 'l'

8 Objective-C

#define CHAR_AT(str, n) [str substringWithRange:NSMakeRange(n,1)]
NSString* ch = CHAR_AT(@"A가★あ中", 2);
NSLog(@"%@", ch); // ★
NSString* str = @"A가★あ中";
unichar ch = [str characterAtIndex:2];
NSLog(@"%C", ch); // ★

9 Pascal

var 
  MyStr: string = 'Hello, World';
  MyChar: Char;
begin
  MyChar := MyStr[2];         // 'e'

10 Perl

$str = 'Hello, World';
substr($str, 2, 1);  # 'l'
substr($str, -3, 1); # 'r'

11 PHP

$str = "Hello";
$ch = $str[1];
// e

12 Python

"Hello, World"[2]          #  'l'
"Hello, World"[-3]         #  'r'

13 Ruby

"Hello, World"[2]          #  'l'
"Hello, World"[-3]         #  'r'

14 Smalltalk

'Hello, World' at: 2.    "$e"

15 VB

GetChar("Hello, World", 2) '  "e"

16 VB.NET

"Hello, World".Chars(2)    '  "l"

17 같이 보기

18 참고