Skip to content

Instantly share code, notes, and snippets.

@degecko
Created December 29, 2015 11:31
Show Gist options
  • Save degecko/9f9eeb4f522b64cb1996 to your computer and use it in GitHub Desktop.
Save degecko/9f9eeb4f522b64cb1996 to your computer and use it in GitHub Desktop.
Match everything but something
<?php
$data = 'This is my data that contains SOMETHING I DON\'T WANT in it.';
preg_match('#^(?:(?!SOMETHING).)*$#', $data, $results);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment