Skip to content

Instantly share code, notes, and snippets.

@nkohari
Created May 21, 2014 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkohari/360152fae9e90108bc1c to your computer and use it in GitHub Desktop.
Save nkohari/360152fae9e90108bc1c to your computer and use it in GitHub Desktop.
coffee> regex = /foo/g
/foo/g
coffee> str = 'fooz'
'fooz'
coffee> regex.test(str)
true
coffee> regex.test(str)
false
coffee> regex.test(str)
true
coffee> regex.test(str)
false
coffee> regex = /foo/
/foo/
coffee> regex.test(str)
true
coffee> regex.test(str)
true
coffee> regex.test(str)
true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment