<?php $contents = '04:19:58 | Player "xxx" (id=xxx pos=<3748.4, 5976.5, 403.3>)'; $pattern = '/(pos=)<([^,\r\n]*),([^,\r\n]*),([^,\r\n]*)>/'; if(preg_match_all($pattern, $contents, $matches)){ echo "Found matches:\n"; print_r($matches); } else{ echo "No matches found"; }
You have javascript disabled. You will not be able to edit any code.