Hi, great script. I want to copy the found lines instead of deleting.
I thought well just replace
with
but that does not work . Don't shoot me. I am new in UE scripting. What does the ^c mean?
Code: Select all
while(UltraEdit.activeDocument.findReplace.find("^c")) {
UltraEdit.activeDocument.deleteLine();
Code: Select all
UltraEdit.activeDocument.deleteLine()
Code: Select all
UltraEdit.activeDocument.copyAppend();