当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。