Como selecionar milhares de linhas

5

Eu tenho um arquivo de texto com 200.000 linhas. Como faço para selecionar várias linhas antes de excluí-las?

O trabalho manual é muito difícil para, digamos, 65.000 linhas.

    
por Sandra 15.02.2012 / 01:37

3 respostas

6

Forma mais fácil:

Ctrl + G , vá para a linha 1

    Menu > Edit > Begin/End select.

Ctrl + G , vá para a linha 65.000.

    Menu > Edit > Begin/End select.

Agora você tem o seu intervalo selecionado.


Respondido:

link

    
por 08.05.2014 / 08:37
1

A combinação shift + do controle de direção é muito lenta para milhares de linhas / páginas; então aqui está uma solução rápida ...

# 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()
    
por 06.10.2012 / 01:56
0

Segurar Shift e PageDown podem selecionar várias linhas com bastante rapidez.

    
por 02.08.2017 / 16:33

Tags