pracma (version 1.9.9)

strRep: Find and replace substring

Description

Find and replace all occurrences of a substring with another one in all strings of a character vector.

Usage

strRep(s, old, new)

Arguments

s
Character vector.
old
String to be replaced.
new
String that replaces another one.

Value

A character vector of the same length.

Details

Replaces all occurrences of old with new in all strings of character vector s. The matching is case sensitive.

See Also

gsub, regexprep

Examples

Run this code
S <- c('This is a good example.', "He has a good character.",
       'This is good, good food.', "How goodgood this is!")
strRep(S, 'good', 'great')

Run the code above in your browser using DataLab