Open In App

Extract word from a String at specified position in R Programming - word() Function

Last Updated : 03 Jun, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
word() Function in R Language is used to extract words from a string from the position specified as argument.
Syntax: word(string, position) Parameter: string: From which word needs to be extracted position: Specified Index value
Example 1: Python3 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)
Output:
[1] "for"
Example 2: Python3 1==
# 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)
Output:
[1] "bcd 100 efg"

Next Article

Similar Reads