Skip to content

Instantly share code, notes, and snippets.

@rianorie
Forked from anonymous/gist:9528482
Last active August 29, 2015 13:57
Show Gist options
  • Save rianorie/9528531 to your computer and use it in GitHub Desktop.
Save rianorie/9528531 to your computer and use it in GitHub Desktop.
<?php
$str[] = ':jamie_h!~textual@72.32.115.231 PRIVMSG #test_channel :test message';
$str[] = ':jamie_h!~textual@72.32.115.231 PRIVMSG #test_channel :fii message';
$str[] = ':jamie_h!~textual@72.32.115.231 PRIVMSG #test_channel :foo message';
$str[] = ':jamie_h!~textual@72.32.115.231 PRIVMSG #test_channel :message test boo';
$str[] = ':jamie_h!~textual@72.32.115.231 PRIVMSG #test_channel :blaat fii message';
foreach($str as $s) {
preg_match('/:([^!]+)[^:]+:(.*(test|fii).*)/', $s, $matches);
print_r( $matches );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment