함수 ord()

Jmnote (토론 | 기여)님의 2014년 7월 22일 (화) 00:55 판 (새 문서: ;ord ;CODE ==Bash== category:Bash <source lang='bash'> CHR=A ORD=`printf '%d' "'$CHR"` echo $ORD # 65 </source> ==Excel== category:Excel <source lang="php"> =CODE("A") // 65...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
ord
CODE

1 Bash

CHR=A
ORD=`printf '%d' "'$CHR"`
echo $ORD
# 65

2 Excel

=CODE("A")
// 65

3 Javascript

document.write('A'.charCodeAt(0));
// 65

4 Objective-C

#define CODE(x) (int)[x characterAtIndex:0]
int code = CODE(@"★");
NSLog(@"%d", code); // 9733
NSString* str = @"★";
int code = (int)[str characterAtIndex:0];
NSLog(@"%d", code); // 9733
int code = (int)'A';
NSLog(@"%d", code); // 65

5 Perl

print ord('A');
# 65

6 PHP

echo ord('A');
// 65

7 Python

print ord('A')
# 65

8 Ruby

Ruby 1.8

puts 'A'[0]
# 65

Ruby 1.9

puts 'A'.ord
# 65

9 See also

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}