I used preg_match but its returning pdf as it English that's why may be.
But I want to get only 練馬春日町Ⅳ
Is there any way to detect it for mb string.
<?php
// Initialize a sentence to a variable
$sentence = '練馬春日町Ⅳ 清掃レポート.pdf';
// Use preg_match() function to get the
// first word of a string
preg_match('/\b\w+\b/i', $sentence, $result);
// Display result
echo "The first word of string is: ".$result[0];
?>