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 nothing
Both 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 ?