<?php $re = '/(?:\[[^][]*]|\([^()]*\)|{[^{}]*})(*SKIP)(*F)|[^][(){}]+/m'; $str = 'Hello [123] {45} world (67) Hello There (8) [9] {0}'; $result = preg_replace($re, '', $str); echo $result;
You have javascript disabled. You will not be able to edit any code.