#6096
Yutaka Emura
Keymaster

feili wrote:
Hello,

I need to remove all the … elements in an xml file. For example, the string:

…in the presence of a transesterification catalyst

should look like this:

… in the presence of a transesterification catalyst

I tried using this RegEx with emeditor (cf. below), but it does not work. This RegEx works with others editors such as Texpad.

Search :
(.*)

Replace:
1

What do I need to do to make it work with emeditor?

Many thanks for your help

must be removed before ( and ).

(.*)

should work.