Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Taskerの「変数検索置換」で文字列変数を編集する必要がありますが、特殊文字を認識できません。
文字列の下を編集する必要があります
+70 888 777 1 1 3 to; 70888777113
どうすればこれを達成できますか?
次を使用して、文字列からすべての空白を置き換えることができます。
$string = preg_replace('/\s+/', '', $string);