"함수 CharAt()"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 14개는 보이지 않습니다)
9번째 줄: 9번째 줄:
==ALGOL 68==
==ALGOL 68==
[[category: ALGOL 68]]
[[category: ALGOL 68]]
<source lang="html4strict">
<syntaxhighlight lang="html4strict">
"Hello, World"[2];        // 'e'
"Hello, World"[2];        // 'e'
</source >
</syntaxhighlight >


==C++==
==C++==
[[분류: C++]]
[[분류: C++]]
{{참고|C++ .at()}}
{{참고|C++ .at()}}
<source lang='cpp'>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>
using namespace std;
using namespace std;
int main() {
int main() {
string s = "World";
string s = "World";
cout << s.at(0) << endl; // W
cout << s.at(1) << endl; // o
cout << s.at(1) << endl; // o
cout << s.at(2) << endl; // r
cout << s.at(2) << endl; // r
}
}
</source>
</syntaxhighlight>


==C#==
==C#==
[[category: Csharp]]
[[category: Csharp]]
<source lang="csharp">
<syntaxhighlight lang="csharp">
string str = "Hello, World";
string str = "Hello, World";
char ch = str[1];
char ch = str[1];
// 'e'
// 'e'
</source>
</syntaxhighlight>


==Excel==
==Excel==
[[category: Excel]]
[[category: Excel]]
<source lang='php'>
<syntaxhighlight lang='php'>
=MID("hello",1,1)
=MID("hello",1,1)
// h
// h
43번째 줄: 44번째 줄:
=MID("hello",3,1)
=MID("hello",3,1)
// l
// l
</source>
</syntaxhighlight>
 
==Go==
[[분류: Go]]
{{참고|Go charAt()}}
<syntaxhighlight lang='go' run>
package main
 
import "fmt"
 
func main() {
s := "Hello, 世界"
fmt.Println(s[0])        // 72
fmt.Println(string(s[0])) // H
fmt.Printf("%c\n", s[0])  // H
}
</syntaxhighlight>


==Java==
==Java==
[[category: Java]]
[[category: Java]]
<source lang='java'>
<syntaxhighlight lang='java'>
String str = "Hello, World";
String str = "Hello, World";
str.charAt(2);  // 'l'
str.charAt(2);  // 'l'
</source>
</syntaxhighlight>


==JavaScript==
==JavaScript==
[[category: JavaScript]]
[[category: JavaScript]]
<source lang='javascript'>
<syntaxhighlight lang='javascript' run>
var str = "Hello, World";
var str = "Hello, World";
str.charAt(2);  // 'l'
console.log( str.charAt(7) );  // W
</source>
</syntaxhighlight>


==Objective-C==
==Objective-C==
[[category: Objective-C]]
[[category: Objective-C]]
<source lang='objc'>
<syntaxhighlight lang='objc'>
#define CHAR_AT(str, n) [str substringWithRange:NSMakeRange(n,1)]
#define CHAR_AT(str, n) [str substringWithRange:NSMakeRange(n,1)]
NSString* ch = CHAR_AT(@"A가★あ中", 2);
NSString* ch = CHAR_AT(@"A가★あ中", 2);
NSLog(@"%@", ch); // ★
NSLog(@"%@", ch); // ★
</source>
</syntaxhighlight>
<source lang='objc'>
<syntaxhighlight lang='objc'>
NSString* str = @"A가★あ中";
NSString* str = @"A가★あ中";
unichar ch = [str characterAtIndex:2];
unichar ch = [str characterAtIndex:2];
NSLog(@"%C", ch); // ★
NSLog(@"%C", ch); // ★
</source>
</syntaxhighlight>


==Pascal==
==Pascal==
[[category: Pascal]]
[[category: Pascal]]
<source lang="pascal">
<syntaxhighlight lang="pascal">
var  
var  
   MyStr: string = 'Hello, World';
   MyStr: string = 'Hello, World';
80번째 줄: 97번째 줄:
begin
begin
   MyChar := MyStr[2];        // 'e'
   MyChar := MyStr[2];        // 'e'
</source >
</syntaxhighlight >


==Perl==
==Perl==
[[category: Perl]]
[[category: Perl]]
<source lang='perl'>
<syntaxhighlight lang='perl'>
$str = 'Hello, World';
$str = 'Hello, World';
substr($str, 2, 1);  # 'l'
substr($str, 2, 1);  # 'l'
substr($str, -3, 1); # 'r'
substr($str, -3, 1); # 'r'
</source>
</syntaxhighlight>


==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
<syntaxhighlight lang='php' run>
$str = "Hello";
$str = "Hello";
$ch = $str[1];
echo $str[1]; // e
// e
</syntaxhighlight>
</source>


==Python==
==Python==
[[category: Python]]
[[category: Python]]
<source lang="python">
<syntaxhighlight lang="python" run>
"Hello, World"[2]         # 'l'
print( "Hello, World"[2] # l
"Hello, World"[-3]         # 'r'
print( "Hello, World"[-3] # r
</source>
</syntaxhighlight>


==Ruby==
==Ruby==
[[category: Ruby]]
[[category: Ruby]]
<source lang="ruby">
<syntaxhighlight lang="ruby" run>
"Hello, World"[2]         # 'l'
print "Hello, World"[2]   # l
"Hello, World"[-3]         # 'r'
print "Hello, World"[-3] # r
</source>
</syntaxhighlight>


==Smalltalk==
==Smalltalk==
[[category: Smalltalk]]
[[category: Smalltalk]]
<source lang="smalltalk">
<syntaxhighlight lang="smalltalk">
'Hello, World' at: 2.    "$e"
'Hello, World' at: 2.    "$e"
</source>
</syntaxhighlight>


==VB==
==VB==
[[category: VB]]
[[category: VB]]
<source lang="vb">
<syntaxhighlight lang="vb">
GetChar("Hello, World", 2) '  "e"
GetChar("Hello, World", 2) '  "e"
</source>
</syntaxhighlight>


==VB.NET==
==VB.NET==
[[category: VB.Net]]
[[category: VB.Net]]
<source lang="vbnet">
<syntaxhighlight lang="vbnet">
"Hello, World".Chars(2)    '  "l"
"Hello, World".Chars(2)    '  "l"
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2022년 3월 10일 (목) 11:35 기준 최신판

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 Go[ | ]

package main

import "fmt"

func main() {
	s := "Hello, 世界"
	fmt.Println(s[0])         // 72
	fmt.Println(string(s[0])) // H
	fmt.Printf("%c\n", s[0])  // H
}

7 Java[ | ]

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

8 JavaScript[ | ]

var str = "Hello, World";
console.log( str.charAt(7) );  // W

9 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); // ★

10 Pascal[ | ]

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

11 Perl[ | ]

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

12 PHP[ | ]

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

13 Python[ | ]

print( "Hello, World"[2]  )  # l
print( "Hello, World"[-3] )  # r

14 Ruby[ | ]

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

15 Smalltalk[ | ]

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

16 VB[ | ]

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

17 VB.NET[ | ]

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

18 같이 보기[ | ]

19 참고[ | ]