I am going the remove the bracket for strings like "(1978)", "(2003)" in ultraedit. Actually I know how to locate these strings using a regular expression:\(\d{4}\)
, but I don't know how to remove the bracket. Any help would be appreciated.
How to remove the bracket in strings like "(2003)" using ultraedit and regular expressions?
954 Views Asked by zeno tsang At
2
Find following pattern:
and replace that with:
See Regular expression for Ultraedit
^1
corresponds to\1
or$1
(backreference) in other regular expression engines.