Remove non-ascii characters from string

前端 未结 8 1210
遥遥无期
遥遥无期 2020-11-28 03:39

I\'m getting strange characters when pulling data from a website:

Â

How can I remove anything that isn\'t a non-extended ASCII character?

相关标签:
8条回答
  • 2020-11-28 04:28

    A regex replace would be the best option. Using $str as an example string and matching it using :print:, which is a POSIX Character Class:

    $str = 'aAÂ';
    $str = preg_replace('/[[:^print:]]/', '', $str); // should be aA
    

    What :print: does is look for all printable characters. The reverse, :^print:, looks for all non-printable characters. Any characters that are not part of the current character set will be removed.

    Note: Before using this method, you must ensure that your current character set is ASCII. POSIX Character Classes support both ASCII and Unicode and will match only according to the current character set. As of PHP 5.6, the default charset is UTF-8.

    0 讨论(0)
  • 2020-11-28 04:29

    This should be pretty straight forwards and no need for iconv function:

    // Remove all characters that are not the separator, a-z, 0-9, or whitespace
    $string = preg_replace('![^'.preg_quote('-').'a-z0-_9\s]+!', '', strtolower($string));
    // Replace all separator characters and whitespace by a single separator
    $string = preg_replace('!['.preg_quote('-').'\s]+!u', '-', $string);
    
    0 讨论(0)
提交回复
热议问题