Skip to content

Instantly share code, notes, and snippets.

@erubboli
Created October 31, 2010 20:04
Show Gist options
  • Save erubboli/657065 to your computer and use it in GitHub Desktop.
Save erubboli/657065 to your computer and use it in GitHub Desktop.
#Zero-width positive lookbehind
"Enrico.Rubboli".match(/(?<=\.)(\w+)/)
# => #<MatchData "Rubboli" 1:"Rubboli">
#Zero-width negative lookbehind
"Enrico.Rubboli".match(/(?<!\.)(\w+)/)
# => #<MatchData "Enrico" 1:"Enrico">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment