Hi,
The Pascal script line `Document.ReplaceAll('t', 'X', False, False, False, True);` should replace "t" for "X". In RJ TextEd 15.0 or 15.2, it does nothing.
The problem also occurs in C++ scripts: `Document.ReplaceAll("t", "X", False, False, False, True);` fails.
In a related matter, the C++ script line `Document.NewlineFormat = "Unix" ;` works, but the equivalent Pascal line `Document.NewlineFormat = 'Unix' ;` fails.
Thanks for a great program and best regards
Document.ReplaceAll stopped working
- Rickard Johansson
- Site Admin
- Posts: 6884
- Joined: 19 Jul 2006 14:29
Re: Document.ReplaceAll stopped working
Fixed the "Replace All" issue in next release (v16.53). Thanks!
should be
in a Pascal script.
Code: Select all
Document.NewlineFormat = 'Unix';Code: Select all
Document.NewlineFormat := 'Unix';