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


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


word()R語言中的函數用於從指定為參數的位置的字符串中提取單詞。

用法: word(string, position)

參數:
string:需要從哪個詞中提取
position:指定索引值

範例1:


# R Program to illustrate 
# the use of word function
  
# Loading Library
library(stringr)
  
# Creating a string
x <- "Geeks for Geeks"
  
# Extracting word
word(x, 2)

輸出:

[1] "for"

範例2:


# R Program to illustrate 
# the use of word function
  
# Loading Library
library(stringr)
  
# Creating a string
x <- "abc bcd 100 efg"
  
# Extracting words
word(x, 2, 4)

輸出:

[1] "bcd 100 efg"

相關用法


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