Last updated 1 year ago
Replaces a substring that starts at the start index and has the specified length with the replacement string
Stuff(string, startIndex, length, replaceWith)
string - A text value to replace in
string
startIndex - Start index
startIndex
length - Lenght of the replaced part
length
replaceWith - A text to replace with
replaceWith
Stuff("Central region", 2, 5) → "Cl region" Stuff("Developer", 4, 6) → "Dev"