Ruby remplacer le premier caractère en chaîne

To replace the first two characters of a string with 'Hello':

x = "This is a test"
puts x.sub(/^../, 'Hello')
Viper