📌  相关文章
📜  如何从PHP的字符串中删除特殊字符?

📅  最后修改于: 2022-05-13 01:54:11.450000             🧑  作者: Mango

如何从PHP的字符串中删除特殊字符?

我们给出了一个字符串,任务是PHP的字符串str删除特殊字符。为了完成这个任务,我们在PHP有以下方法:

方法 1:使用str_replace () 方法 str_replace()方法 用于从给定字符串str 中删除所有特殊字符,方法是将这些字符替换为空格(" ")。

语法

str_replace( $searchVal, $replaceVal, $subjectVal, $count )

例子 :

PHP
' ), ' ', $str);
      
    // Returning the result 
    return $res;
    }
  
// Given string
$str = "Example,to removeSpecial'Char;"; 
  
// Function calling
$str1 = RemoveSpecialChar($str); 
  
// Printing the result
echo $str1; 
?>


PHP
' ), ' ', $str);
      
    // returning the result 
    return $res;
    }
  
// Given string
$str = "Example,to removeSpecial'Char;"; 
  
// Function calling
$str1 = RemoveSpecialChar($str); 
  
// Printing the result
echo $str1; 
?>


PHP
Special'Char;"; 
  
// Function calling
$str1 = RemoveSpecialChar($str); 
  
// Printing the result
echo $str1; 
?>


输出

Example to remove the Special Char 

方法 2:使用str_ireplace() 方法 str_ireplace() 方法用于从给定的字符串str 中删除所有特殊字符,方法是将这些字符替换为空格(" ")。 str_replace函数str_ireplace之间的区别在于str_ireplace不区分大小写的。

语法

str_ireplace( $searchVal, $replaceVal, $subjectVal, $count )

例子 :

PHP

' ), ' ', $str);
      
    // returning the result 
    return $res;
    }
  
// Given string
$str = "Example,to removeSpecial'Char;"; 
  
// Function calling
$str1 = RemoveSpecialChar($str); 
  
// Printing the result
echo $str1; 
?>
输出
Example to remove the Special Char 

方法 3:使用preg_replace() 方法 preg_replace() 方法用于执行正则表达式搜索和替换内容。

语法

preg_replace( $pattern, $replacement, $subject, $limit, $count )

例子 :

PHP

Special'Char;"; 
  
// Function calling
$str1 = RemoveSpecialChar($str); 
  
// Printing the result
echo $str1; 
?>
输出
Example to remove the Special Char 

PHP是一种专门为 Web 开发设计的服务器端脚本语言。您可以按照此PHP教程和PHP示例从头开始学习PHP 。