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


Ruby Integer chr用法及代碼示例


Ruby中的chr函數根據編碼返回包含int值表示的字符的字符串。

用法:string.chr([encoding]) 

參數:該函數采用要進行編碼的整數值。如果要根據編碼進行編碼,則采用非強製性參數編碼。


返回值:該函數返回字符。

範例1:

# Ruby Program of Integer chr function 
  
# Initializing the numbers  
num1 = 65
num2 = 66
num3 = 97
num4 = 245
   
# Prints the chr  
# after encoding  
puts num1.chr 
puts num2.chr 
puts num3.chr 
puts num4.chr(Encoding::UTF_8)

輸出

A
B
a
õ

範例2:

# Ruby Program of Integer chr function 
  
# Initializing the numbers  
num1 = 119
num2 = 68
num3 = 89
num4 = 255
   
# Prints the chr  
# after encoding  
puts num1.chr 
puts num2.chr(Encoding::UTF_8) 
puts num3.chr 
puts num4.chr(Encoding::UTF_8)

輸出

w
D
Y
ÿ


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer chr function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。