<?php
$search = 'слова';
$tvName = 'keywords';
preg_quote($search, '/');
foreach($modx->getCollection('modResource') as $res){
$kw = $res->getTVValue($tvName);
preg_match_all("/.*$search.*/", $kw, $matches);
if($matches[0]){
$matches['id'] = $res->get('id');
print_r($matches);
}
}