我的要求是從字符串中刪除除下劃線之外的所有特殊符號。我想從字符串中刪除特殊符號,句點,連字符,下劃線和數字 - PHP
我使用..
$string = '[email protected](text)text&text.text*text\text/text';
$columnName = preg_replace('/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '_', $string);
輸出:
text-text_text_text_text(text)text&text.text_text_text_text
但它不刪除時期,符號,支架和儀表板。創建這個正則表達式時,我感到無助。請幫助..
'的preg_replace('/ [^ A-ZA-Z0-9 ] /','_',$ string);' – rabudde
嘿thanx ..它的工作..添加它作爲答案il標記它是正確的。 –