## Look Ahead example
#
#  Find ending in `entre`
#

x <- c("the centre place", "notCentreplace", "youth centRe") 
pat <- "entre(?=\\b)"

gsub(pat, "enter", x, perl=TRUE, ignore.case=TRUE)
