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"