- AuthorPosts
- January 5, 2008 at 4:00 pm #5258WindBellMember
I want to merge all line to make each line end with “]” or “>” or “=”
So I use
Regular Expression
Method 1:
find “([^]=>])n”
then replace with “1 “Method 2:
find (?])n ( Search every n without a “]” or “>” or “=”
then replace with nothingBoth works well under Find/Replace dialog .
But Method 1
Delete a character before “n” and generate a strange character :Is it a bug or my fault in writing this script ?
January 5, 2008 at 4:53 pm #5259Yutaka EmuraKeymasterI cannot reproduce your problem of Method 1 in Replace dialog. What macro do you use? Please let me know which version of EmEditor and OS you are using. Please email me a sample file and a sample macro so that I can reproduce your problem. Please make your sample macro small enough to use as a test case. Thanks! [email protected]
WindBell wrote:
I want to merge all line to make each line end with “]” or “>” or “=”So I use
Regular Expression
Method 1:
find “([^]=>])n”
then replace with “1 “Method 2:
find (?])n ( Search every n without a “]” or “>” or “=”
then replace with nothingBoth works well under Find/Replace dialog .
But Method 1
Delete a character before “n” and generate a strange character :Is it a bug or my fault in writing this script ?
- AuthorPosts
- You must be logged in to reply to this topic.