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"
相关用法
- R语言 strtrim()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 arrayInd()用法及代码示例
- R语言 get()用法及代码示例
- R语言 curve()用法及代码示例
- R语言 signif()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 gl()用法及代码示例
- R语言 polygon()用法及代码示例
- R语言 rep_len()用法及代码示例
- R语言 rep.int()用法及代码示例
- R语言 seq_len()用法及代码示例
- R语言 seq.int()用法及代码示例
- R语言 rgb()用法及代码示例
- R语言 colorRampPalette()用法及代码示例
- R语言 max.col()用法及代码示例
- R语言 str_to_title()用法及代码示例
- R语言 topo.colors()用法及代码示例
- R语言 cm.colors()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Extract word from a String at specified position in R Programming – word() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。