It kinda depends on what you know going into it. What is constant? Will it always be the third? or will it always be the space after tester?
Third Sample
<?php
$strStr = "From: test tester something";
for( $loop='0'; $loop=='3'; $loop++) {
$current_position = strpos( $strStr, " ", $current_position);
$current_position++;
}
$current_position--;
echo "The position of the third space is ".$current_position;
?>
tester Sample
<?php
$strStr = "From: test tester something";
$keyword = "tester";
$current_position = strpos( $strStr, $keyword);
$current_position + strlen($keyword);
echo "The position of the third space is ".$current_position;
?>
Hope that helps,
Richard