125126127128129130131132133134135
public List<String> regExRemove(String expression) throws Exception { SCClient client = getClient(); try { return (client != null) ? client.regExRemove(expression) : new ArrayList<String>(); } finally { releaseClient(client); }