Perl中的chr()函數返回一個字符串,該字符串表示Unicode代碼點為整數的字符。
用法: chr(Num)
參數:
Num :它是一個Unicode整數值,其返回相應的字符。
返回值:一個字符串,表示一個字符,其Unicode代碼點是一個整數。
示例1:
#!/usr/bin/perl
# Taking some unicode interger value as the parameter
# of the chr() function and returning the corresponding
# characters as output
print chr(71), chr(101), chr(101), chr(107), chr(115);
print "\n";
print chr(102), chr(111), chr(114);
print "\n";
print chr(71), chr(101), chr(101), chr(107), chr(115);
輸出:
Geeks for Geeks
示例2:
#!/usr/bin/perl
# Initialising an array of some unicode integer values
# and retrieving each value and printing their
# corresponding characters
my @Array = (71, 101, 101, 107, 115);
foreach my $element (@Array) {
print chr($element);
}
輸出:
Geeks
相關用法
- Perl uc()用法及代碼示例
- Perl each()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl log()用法及代碼示例
- Perl int()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl exp用法及代碼示例
- Perl hex用法及代碼示例
- Perl cos()用法及代碼示例
- Perl tell()用法及代碼示例
- Perl rindex()用法及代碼示例
- Perl join()用法及代碼示例
- Perl keys()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Perl | chr() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。