public Token::findWithPrefix(array $tokens, $prefix, $delimiter = ':')
Returns a list of tokens that begin with a specific prefix.
Used to extract a group of 'chained' tokens (such as [node:author:name]) from the full list of tokens found in text. For example:
$data = array(
'author:name' => '[node:author:name]',
'title' => '[node:title]',
'created' => '[node:created]',
);
$results = Token::findWithPrefix($data, 'author');
$results == array('name' => '[