Skip to content

Instantly share code, notes, and snippets.

@nobeans
Created June 22, 2011 13:53
Show Gist options
  • Save nobeans/1040125 to your computer and use it in GitHub Desktop.
Save nobeans/1040125 to your computer and use it in GitHub Desktop.
String.metaClass.replace << { int i, String s ->
assert s.size() == 1
delegate.value[i] = s as char
}
def x = 'groovy'
x.replace(3, 'X')
assert x == 'groXvy'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment