删除所有特殊字符在使用PHP的字符串的开头

时间:2013-03-25 10:15:19

标签: php regex string

如何使用PHP删除字符串的开头(首字母应该是字母数字)中的所有特殊字符?请

$ String =“+&,Hello + {+ + $ world”;

删除字符串开头的所有特殊字符

字符串应变为“Hello + {+ + $ world”

帮助我。

6 个答案:

答案 0 :(得分:1)

尝试使用trim获取更多信息,请参阅此http://php.net/manual/en/function.trim.php

要从字符串开头删除,您可以使用ltrim http://www.php.net/manual/en/function.ltrim.php

要从字符串末尾删除,您可以使用rtrim http://www.php.net/manual/en/function.rtrim.php

您的样本代码

$String = "+&,Hello+{+ +$world";
echo ltrim($String,"&+,");

你可以在ltrim中添加更多字符,以便从第一个字符串中删除

答案 1 :(得分:1)

<?php
function string_cleaner($result)
{
    $result = strip_tags($result);
    $result = preg_replace('/[^\da-z]/i', ' ', $result);
    $result = preg_replace('/&.+?;/', '', $result); 
    $result = preg_replace('|%([a-fA-F0-9][a-fA-F0-9])|', ' ', $result);
    $result = preg_replace('|-+|', ' ', $result);
    $result = preg_replace('/_+/', ' ', $result);
    $result = preg_replace('/&#?[a-z0-9]+;/i','',$result);
    $result = preg_replace('/[^%A-Za-z0-9 _-]/', ' ', $result);
    $result = preg_replace('/^\W+|\W+$/', '', $result);
    $result = preg_replace('/\s+/', ' ', $result);
    $result = trim($result, ' ');
    return $result;
}
?>

<?php
echo string_cleaner($content);
?>

答案 2 :(得分:1)

这将替换开头的所有不是字母数字的内容:

preg_replace('/^([^a-zA-Z0-9])*/', '', $string);

更新:

如果您需要在字符串的开头和结尾都修剪非字母数字字符,请使用:

<?php

$string = "++&5Hello ++f s world6f++&ht6__)  ";

echo preg_replace('/(^([^a-zA-Z0-9])*|([^a-zA-Z0-9])*$)/', '', $string);

答案 3 :(得分:0)

试试这个

   preg_replace('/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $String);

答案 4 :(得分:0)

使用trim - 它是一个内置功能:     http://php.net/manual/en/function.trim.php

答案 5 :(得分:0)

我认为使用ltrim会更有用,因为你想在字符串的开头删除它:http://www.php.net/manual/en/function.ltrim.php