So, in the case of replacing all instances where strings appear, in strings that don't contain regex references (\d, \s,...) as in my example code, String.replace() would give better performance than String.replaceAll() right? And if true, comparing String.replace() together with String...