String-Replace

(string-replace source pattern text) -> string

source - Original string
pattern - searched for within source
text - Used to replace all instances of pattern

Example:

>> (string-replace "i want to see uppercase 1st-person pronouns when i am done here." "i" "I")
:: "I want to see uppercase 1st-person pronouns when I am done here."