0

im using this code

$output = preg_replace('/[^(\x20-\x7F)]*/','', $output);

my goal is to remove this character but the code removed all unwanted characters.

Please help me to remove that character.

Thanks.

4

1 に答える 1

0

私はこのサイトを使用して、そのキャラクターのコードを見つけました。コードは、範囲内にないすべての文字を置き換えます\x20-\x7F

そのコードを使ってそれを行う方法はわかりませんが、そこに文字を入れるだけで機能します。ただし、テキストエディタがUnicodeをサポートしていない場合は、Unicodeが何にも置き換えられない可能性があるため、ファイルを保存すると機能しませんので注意してください。

echo preg_replace('/*/','', $str);
> ter but th
echo str_replace('', '',  $str);
> ter but th
于 2012-07-10T02:38:14.277 に答える