Community
    • Login

    Show count of occurrences of a selected string

    Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
    2 Posts 2 Posters 4.8k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • bob bobB
      bob bob
      last edited by

      Hello,
      I’d like to know the number of occurence of a word
      (When you double click on a word or select a specfic string) updated in real time and shown in the information bar (like sel, Ln, Col,…).
      The ctrl+f + count option allows you to count but it is too many operations.

      Can I design a plugin to achieve this purpose ?

      Thanks !

      Bob

      Scott SumnerS 1 Reply Last reply Reply Quote 0
      • Scott SumnerS
        Scott Sumner @bob bob
        last edited by

        @bob-bob

        You could do a plugin to get this behavior, or you could script it. Here’s an example (may not be fully rounded out) in Pythonscript, I call it SelectedTextCountIntoStatusBar.py; you would run it once per Notepad++ session:

        def callback_sci_UPDATEUI(args):
            if args['updated'] & UPDATE.SELECTION:
                matches = []
                if editor.getTextLength() < 100000:  # don't search "big" files
                    if editor.getSelections() == 1 and not editor.getSelectionEmpty():
                        try:
                            editor.research(r'\Q' + editor.getSelText() + r'\E', lambda m: matches.append(1))
                        except:
                            matches = []
                l = len(matches)
                notepad.setStatusBar(STATUSBARSECTION.DOCTYPE, ' ' if l == 0 else '{} occurrence(s) of selected text'.format(l))
        
        editor.callback(callback_sci_UPDATEUI, [SCINTILLANOTIFICATION.UPDATEUI])
        
        1 Reply Last reply Reply Quote 2
        • First post
          Last post
        The Community of users of the Notepad++ text editor.
        Powered by NodeBB | Contributors