Filtering posts by WORD in custom field

args = array(
    'post_type' => 'product',
    'meta_query' => array(
        array(
            'key' => 'brand',
            'value' => 'crocs',
            'compare' => 'LIKE'
        )
    )
 );
$query = new WP_Query( $args );

http://codex.wordpress.org/Class_Reference/WP_Query