Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def text = 'hello world!'
- String.metaClass.camelize = {
- delegate.split().inject(""){ before, word ->
- before += word[0].toUpperCase() + word[1..-1]
- }
- }
- assert text.camelize() == "HelloWorld!"
Advertisement
Add Comment
Please, Sign In to add comment