5

У меня есть текстовый файл с 200 000 строк. Как выбрать несколько строк, прежде чем удалить их?

Ручная работа слишком сложна, скажем, для 65 000 строк.

3 ответа3

6

Самый простой способ:

Ctrl+G, перейти к строке 1

    Menu > Edit > Begin/End select.

Ctrl+G, перейти к строке 65.000.

    Menu > Edit > Begin/End select.

Теперь у вас есть выбранный диапазон.


Ответил:

https://stackoverflow.com/questions/8490968/select-range-of-lines-in-notepad

1

Комбинация shift+некоторая регулировка направления довольно чертовски медленна для тысяч строк / страниц; так вот быстрое решение ...

# File:: selectGOTO.py
#   A N++ Python Script to enhance line selection speed compared to mouse, cursor, page controls.
#   Selects text from the [ start|end ] of current line to [ end|start ] of GOTO line.

# Install using:: Plugins -> Plugin Manager -> Python Script
# Create script using:: Plugins -> Python Script -> New Script -> "selectGoto.py"
# Add to menu:: Plugins -> Python Script -> Configuration -> [select script] [ add ]
# Create shortcut:: [Restart N++]
#   Settings -> Shortcut Mapper -> Plugin Commands -> selectGOTO -> [modify] [ctrl]+[shift]+[g]

# Simple usage:
#   [ctrl]+[shift]+[g] line#
#   Do your operation... (ie: del)

from Npp import *

class startAnchor:
    pos = 0

def selectGOTO( args ):
    endPos = editor.getCurrentPos()
    if( endPos > startAnchor.pos ):
        startAnchor.pos = editor.positionFromLine( editor.lineFromPosition( startAnchor.pos ) )
    else:
        tmp = startAnchor.pos
        startAnchor.pos = endPos
        endPos = tmp
    endPos = editor.getLineEndPosition( editor.lineFromPosition( endPos ) )
    editor.setSel( startAnchor.pos, endPos )
    editor.clearCallbacks()

def main():
    startAnchor.pos = editor.getCurrentPos()
    editor.callback( selectGOTO, [SCINTILLANOTIFICATION.UPDATEUI] )
    notepad.menuCommand( MENUCOMMAND.SEARCH_GOTOLINE )

main()
0

Удерживая Shift и PageDown, можно довольно быстро выбрать несколько строк.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .