Skip to content

Instantly share code, notes, and snippets.

@lifeinafolder
Created December 6, 2010 19:46
Show Gist options
  • Save lifeinafolder/730810 to your computer and use it in GitHub Desktop.
Save lifeinafolder/730810 to your computer and use it in GitHub Desktop.
Character Search in String using !~ operators
var str = 'posterous';
if ( !~str.search('t') ) {
// character 't' not found branch
}
else{
// found branch
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment