R语言 从一个字符串的指定位置提取单词–word()函数

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"

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程