str_replace seems to randomly replace the first character when trying to replace a "." (might be piping related?) ``` strtest<-"TOP40TR.Index" str_replace(strtest,".","X") ``` Expected: ``` [1] "TOP40TRXIndex" ``` Actual: ``` [1] "XOP40TR.Index" ```