Q
刪除特殊字符\
-1
A
回答
1
str_replace("char_to_rep","",$string); // replacing with nothing means deleting
0
0
str_replace("#"," ",$string)
替換特殊字符試試這個代碼的所有特殊字符
0
非常感謝您的幫助,但有沒有更好的方法來做到這一點?
$post = '(&repl^eac&e_+';
function repleace($post) {
$array = array('.html', '.php', '±', '§', '!', '@', '€', '`', '#', '$', '%', '^', '&', '*', '(', ')', '+', '=', '<', '>', '?', '/', '|', '[', ']', ':', ';', ',', '~', '.');
$post = str_replace($array, '', $post);
$post = str_replace(' ', '_', $post);
$post = str_replace('-', '_', $post);
return strtolower('/'.$post.'/');
}
0
function($input) {
$input = preg_replace("/&#?[a-z0-9]{2,8};/i","",$input);
$input = ucfirst($input);
return $input;
}
的/ &#內的PHP pre_repleace函數[A-Z0-9] {2,8};/I字符工作正常。
相關問題
- 1. 刪除特殊字符?
- 2. 刪除特殊字符
- 3. JSON刪除特殊字符
- 4. 刪除特殊字符php
- 5. Mawk - 刪除特殊字符
- 6. 特殊字符刪除'sed'
- 7. 刪除特殊字符SQL
- 8. 刪除特殊字符
- 9. Mysql刪除特殊字符後出現特定特殊字符
- 10. 刪除字典中的特殊字符
- 11. 從URL中刪除特殊字符
- 12. 從Retrofit2響應刪除特殊字符
- 13. 無寬度特殊字符刪除
- 14. 如何刪除特殊字符?
- 15. 使用php刪除特殊字符?
- 16. 從powershell中刪除特殊字符
- 17. 自動刪除特殊字符
- 18. 甲骨文REGEXP_REPLACE刪除特殊字符
- 19. 刪除SQL中的特殊字符
- 20. 如何刪除特殊字符的行?
- 21. 如何刪除「Ctrl + Backspace」特殊字符?
- 22. PHP regural EXP刪除特殊字符
- 23. HTTParty不刪除HTML特殊字符
- 24. Javascript函數刪除特殊字符
- 25. 如何刪除所有特殊字符
- 26. 刪除MySQL中所有特殊字符
- 27. 在ASP中刪除特殊字符
- 28. 網絡收穫 - 刪除特殊字符
- 29. 刪除行的特殊字符
- 30. 刪除所有特殊字符在Java
$ content = str_replace('\\','',$ content); –
$ string = preg_replace(「/&#?[a-z0-9] {2,8};/i」,「」,$ input); –