LoginSignup
0
0

More than 1 year has passed since last update.

【PHP】全角半角の混合文字列を削除

Posted at
<?php
$hankaku_zenkaku = '  全角半角  ';

$trim = trim(mb_convert_kana($hankaku_zenkaku, "s", 'UTF-8'));

echo "==={$trim}===";

結果

===全角半角===
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0