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


R語言 strtoi()用法及代碼示例


R 語言中的 strtoi() 函數用於將指定的字符串轉換為整數。

用法: strtoi(x, base=0L)

參數:
x:字符向量
base:2 到 36 之間的整數,默認為 0

範例1:


# R program to illustrate
# strtoi function
  
# Initializing some string vector
x <- c("A", "B", "C")
y <- c("1", "2", "3")
  
# Calling strtoi() function
strtoi(x, 16L)
strtoi(y)

輸出:

[1] 10 11 12
[1] 1 2 3

範例2:


# R program to illustrate
# strtoi function
  
# Calling strtoi() function over
# some specified strings
strtoi(c("0xff", "023", "567"))
strtoi(c("ffff", "FFFF"), 16L)
strtoi(c("246", "135"), 8L)

輸出:

[1] 255  19 567
[1] 65535 65535
[1] 166  93

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Convert String to Integer in R Programming – strtoi() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。