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.
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.
私はこのサイトを使用して、そのキャラクターのコードを見つけました。コードは、範囲内にないすべての文字を置き換えます\x20-\x7F
そのコードを使ってそれを行う方法はわかりませんが、そこに文字を入れるだけで機能します。ただし、テキストエディタがUnicodeをサポートしていない場合は、Unicodeが何にも置き換えられない可能性があるため、ファイルを保存すると機能しませんので注意してください。
echo preg_replace('/*/','', $str);
> ter but th
echo str_replace('', '', $str);
> ter but th