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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。