I have the following phrase and I need in PHP to remove the English Characters
$field = "日本語フレーズ A Japanese phrase A Japanese phrase 日本語フレーズ";
I have the following regular expression
trim(preg_replace('/[a-zA-Z]/', '', $field));
but this will leave with more than a single space between.
日本語フレーズ 日本語フレーズ
I need to have only one space between them. The following is the expected output.
日本語フレーズ 日本語フレーズ